Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
61152 | laichihao | 属相 | C++ | Accepted | 0 MS | 236 KB | 171 | 2025-02-22 15:27:34 |
#include<iostream> using namespace std; int main(){ int mon,day; cin>>mon>>day; if(mon==1&&day<=24)cout<<"Pig"; else cout<<"Mouse"; return 0; }