Run ID:93014
提交时间:2024-10-07 15:34:41
#include<iostream> using namespace std; int main(){ int mon,day; cin>>mon>>day; if(mon == 1 && day <= 24){ cout<<"Pig"<<endl; }else{ cout<<"Mouse"<<endl; } }