Run ID:139128

提交时间:2025-12-01 17:21:27

#include <iostream> using namespace std; int main() { int month,day; cin>>month>>day; if(month<=1&&day<=24){ cout<<"Pig"<<endl; }else{ cout<<"Mouse"<<endl; } return 0; }