Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
41681 | lmz120809 | 属相 | C++ | Accepted | 0 MS | 252 KB | 195 | 2024-02-23 09:09:22 |
#include<iostream> using namespace std; int main() { int m,d; cin>>m>>d; if(m>1){ cout<<"Mouse"; } else if(d>25){ cout<<"Mouse"; } else{ cout<<"Pig"; } return 0; }