提交时间:2025-02-15 16:06:02
运行 ID: 5706
#include <bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; if (a>=60 && b<60 or a<60 &&b>=60) { cout<<"green"<<endl; } else { cout<<"red"<<endl; } return 0; }