Run ID:149614
提交时间:2026-03-14 17:37:16
#include <iostream> using namespace std; int main() { int M; cin >> M; cout << (M % 2 == 1 ? 1 : 0) << endl; return 0; }