Problem
The citizens of Byteland regularly play a game. They have blocks each denoting some integer from 0 to 9. These are arranged together in a random manner without seeing to form different numbers keeping in mind that the first block is never a 0. Once they form a number they read in the reverse order to check if the number and its reverse is the same. If both are same then the player wins. We call such numbers palindrome.
Ash happens to see this game and wants to simulate the same in the computer. As the first step he wants to take an input from the user and check if the number is a palindrome and declare if the user wins or not.
Input
The first line of the input contains T, the number of test cases. This is followed by T lines containing an integer N.
Output
For each input output "wins" if the number is a palindrome and "loses" if not, in a new line.
Constraints
1<=T<=20
1<=N<=20000
Sample 1:
3 331 666 343
loses wins wins
Program :
#include <stdio.h>
int main(void)
{
int t,n,i,a,ans;
scanf("%d",&t);
for(i=1;i<=t;i++)
{
scanf("%d",&n);
int n1=n;
ans=0;
while(n!=0)
{
a=n%10;
ans=ans*10+a;
n=n/10;
}
if(ans==n1){
printf("wins\n");
}
else{
printf("loses\n");
}
}
return 0;
}
0 Comments