提交时间:2024-02-21 09:51:54
运行 ID: 41484
#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; bool f=false; for(int i=0;i<m;i++){ if(f==false){ f=true; }else{ f=false; } } if(f==true){ cout<<1; }else{ cout<<0; } return 0; }