#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main () {
    string str = "January";
    if (str == reverse(str.begin(), str.end())) {
        cout << str << " is a Palindrome" << endl;
    } else {
        cout << str << " is not a Palindrome" << end;
    }
    return 0;
}