Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
26306 盛漫妮 拉线开关 C++ Accepted 5 MS 716 KB 167 2022-05-18 16:11:29

Tests(4/4):


Code:

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