S001-AC.cc 432 Bytes
#include <iostream>
#include <sstream>

using namespace std;


bool is_palindromic(int n)
{
	stringstream sstream;
	string str;
	sstream << n;
	sstream >> str;
	for(int i = 0; i < str.size()/2; i++)
	{
		if(str[i] != str[str.size() - i - 1])
		{
			return false;
		}
	}
	return true;
}

int main()
{
/*
	int a;
	cin >> a;
	if(is_palindromic(a))
	{
		cout << "TRUE" << endl;
	}
	else
	{
		cout << "FALSE" << endl;
	}
	return 0;
*/
}