Run ID:93019

提交时间:2024-10-07 15:37:10

#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"; } }