abc174_a - Air Conditioner
31 Oct 2020 — Tags: None
Click to show code.
using namespace std;
int main(void)
{
int x;
cin >> x;
cout << (x >= 30 ? "Yes" : "No") << endl;
return 0;
}
Click to show code.
using namespace std;
int main(void)
{
int x;
cin >> x;
cout << (x >= 30 ? "Yes" : "No") << endl;
return 0;
}