#includeint main(){ int a,temp=0; scanf("%d",&a); while(a!=0) { temp=temp+a%10; temp=temp*10; a=a/10; } printf("%d",temp/10); getch(); return 0;}
#include
উত্তরমুছুনint main()
{
int a,temp=0;
scanf("%d",&a);
while(a!=0)
{
temp=temp+a%10;
temp=temp*10;
a=a/10;
}
printf("%d",temp/10);
getch();
return 0;
}