Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
41684 | jaypei | 属相 | C++ | Wrong Answer | 0 MS | 240 KB | 170 | 2024-02-23 09:15:13 |
#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; }