提交时间:2025-02-15 16:25:14

运行 ID: 5726

#include <bits/stdc++.h> using namespace std; int main(){ float a,b; cin>>a>>b; if(a >= 60 && b < 60 ||a < 60 && b >= 60){ cout<<"green"<<endl; } else{ cout<<"red"<<endl; } return 0 ; }