Run ID:97708
提交时间:2024-11-16 13:08:19
#include<bits/stdc++.h> using namespace std; int main(){ int month,day; cin>>month>>day; if(month=1&&day<=24){ cout<<"Pig"; }else if(month>=1&&day>24){ cout<<"Mouse"; } return 0; }