Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
24527 | LeoWang | 属相 | C++ | Accepted | 0 MS | 248 KB | 205 | 2023-08-14 02:06:47 |
#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; if(n>1) { cout<<"Mouse"; } else if(n==1&&m>24) { cout<<"Mouse"; } else cout<<"Pig"; return 0; }