答案在此
2024-12-11 22:51:20
发布于:广西
1阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main()
{
int n,m,a,b,c;
cin >> n >> m >> a >> b >> c;
if(n >= 60 && m >= 60 && a >= 60 && b >= 60 && c >= 60)
{
cout << "YES";
}
else
{
cout << "NO";
}
return 0;
}
这里空空如也
有帮助,赞一个