Please write a program that receives an input number, then decreases the input by 1 until it reaches '0'. But instead of showing '0', it will output 'zero'.
Example(template)
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
	int a;                             //can be changed
	printf("Enter your input:");       // DO NOT change
	scanf("%d",&a);
    // Your conditions start from here
	return 0;
}
 
Input
Enter your input:10
Output
Enter your input:10
10987654321zero
 
** No need to put a space between numbers