Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
41677 | Jeremy | 属相 | C++ | Accepted | 1 MS | 244 KB | 170 | 2024-02-23 09:06:04 |
#include<iostream> using namespace std; int m,d; int main() { cin>>m>>d; if(m==1&&d<=25){ cout<<"Pig"<<endl; } else cout<<"Mouse"<<endl; return 0; }