12895 - Palindrome Number   

Description

If a number is a palindrome number, that means the that number remains the same value when its digits are reversed.

E.g. 12345 is not a palindrome number because 12345 is not equal to 54321; on the contrary, 10301 is a palindrome number because it remains 10301 when its digits are reversed.

Given an integer. Please Write a C program to tell if it’s a palindrome number.

 

Input

One integer Num. Note that 32,767 >= Num >= 0.

 

Output

Output should follow below format:

Yes/No

Note that:

  1. Need to have a return value('\n') at the end of your string.

Sample Input  Download

Sample Output  Download

Tags




Discuss