| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 41678 | jiabokai | 属相 | C++ | Accepted | 0 MS | 244 KB | 146 | 2024-02-23 09:07:05 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; if(n==1&&m<=24){ cout<<"Pig"; }else cout<<"Mouse"; }