#include using namespace std; int main(){ long long n; cin >> n; cout << (((n+1) & -(n+1))==n+1?'X':'O') << endl; }