import java.io .*;
class ReadPalindrome
{
public static boolean is_Palindrome( int x)
{
return ( x== Palindrome( x) ? true : false ) ;
}
public static int Palindrome( int num)
{
while ( num> 0 )
{
int y;
String z= "" ;
y= num% 1000 ;
String i= Integer.toString ( y) ;
z= z+ i;
num= num/ 10 ;
System.out .println ( num + z) ;
}
return 0 ;
}
public static void main ( String args[ ] )
{
int number1= 1221 , number2= 1234 ;
}
}
aW1wb3J0IGphdmEuaW8uKjsKCiBjbGFzcyBSZWFkUGFsaW5kcm9tZQp7CnB1YmxpYyBzdGF0aWMgIGJvb2xlYW4gaXNfUGFsaW5kcm9tZShpbnQgeCkKewpyZXR1cm4gKHg9PVBhbGluZHJvbWUoeCk/IHRydWU6IGZhbHNlKTsKfQpwdWJsaWMgc3RhdGljIGludCBQYWxpbmRyb21lKGludCBudW0pCnsKd2hpbGUobnVtPjApCnsKaW50IHk7ClN0cmluZyB6PSIiOwp5PW51bSUxMDAwOwoKU3RyaW5nIGk9IEludGVnZXIudG9TdHJpbmcoeSk7Cno9eitpOwpudW09bnVtLzEwOwpTeXN0ZW0ub3V0LnByaW50bG4obnVtICsgeik7Cn0KcmV0dXJuIDA7Cn0KcHVibGljIHN0YXRpYyB2b2lkIG1haW4gKFN0cmluZyBhcmdzW10pIAp7CmludCBudW1iZXIxPTEyMjEsIG51bWJlcjI9MTIzNDsKCn0KfQ==
compilation info
/home/oZuwi4/prog.fs(1,17): error FS0010: Unexpected symbol ';' in expression
/home/oZuwi4/prog.fs(4,1): warning FS0058: Possible incorrect indentation: this token is offside of context started at position (3:2). Try indenting this token further or using standard formatting conventions.
stdout