Run ID:126770

提交时间:2025-07-21 16:41:02

#include<bits/stdc++.h> using namespace std;//命名空间 分号是英文分号 int main() { int a, b; cin >> a >> b; if (a == 1 && b <= 24) { cout << "Pig"; }else{ cout << "Mouse"; } return 0; }