abc174_a - Air Conditioner
28 Jan 2021 — 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;
}