Run ID:147817

提交时间:2026-02-07 23:17:02

#include <iostream> using namespace std; int main() { int M; cin >> M; cout << (M % 2 == 1 ? 1 : 0) << endl; return 0; }