2 solutions
Information
- ID
- 593
- Time
- 1000ms
- Memory
- 64MiB
- Difficulty
- 4
- Tags
- # Submissions
- 127
- Accepted
- 54
- Uploaded By
#include <bits/stdc++.h> using namespace std;
int main() { double a, b; cin >> a >> b; if (a * 3 / 60 + b >= 8) cout << "Yes" << endl; else cout << "No" << endl; }
999