#include<stdio.h>
int main() 
{
int i;
printf("Enter a number\n");
scanf("%d",&i); 
do{
printf("%d",i);
i--;
}while(i<=60);
return 0;
}

Posted on by