Run ID:97703

提交时间:2024-11-16 13:06:47

#include<bits/stdc++.h> using namespace std; int main(){ int M; cin>>M; if(M%2==0){ cout<<"0"; } if(M%1==0){ cout<<"1"; } return 0; }