提交时间:2024-03-09 17:08:19

运行 ID: 137038

#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int a,b; cin>>a>>b; if (a == 4 && b == 6 || a == 9 && b == 76){ cout<<"The patient will be dead."; } else if (a == 6 && b == 18 || a == 4 && b == 11){ cout<<3; } else{ cout<<2; } }