Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126778 陈冠樾 属相 C++ Wrong Answer 0 MS 272 KB 164 2025-07-21 16:47:59

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int m,b; cin>>m>>b; if(m==1&&b<=24){ cout<<"pig"; }else{ cout<<"mouse"; } return 0; }


Run Info:

------Input------
5 2
------Answer-----
Mouse
------Your output-----
mouse