#include using namespace std; int main() { // 1. 入力情報取得. int p; cin >> p; // 2. 与えられたメルセンヌ素数を2進数で表記したときの各桁の和は? cout << p << endl; return 0; }