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