Run ID:97711

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

#include<bits/stdc++.h> using namespace std; int main(){ int month,day; cin>>month>>day; if(month==1&&day<=24){ cout<<"Pig"; }else { cout<<"Mouse"; } return 0; }