// No.354 メルセンヌ素数 // https://yukicoder.me/problems/no/354 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int p; cin >> p; cout << p << endl; }