Untitled
unknown
c_cpp
a year ago
203 B
1
Indexable
#include <iostream> #include <string> using namespace std; int main() { int N, M, K; cin >> N >> M >> K; if (N * M >= K) { cout << "YES"; } else { cout << "NO"; } return 0; }
Editor is loading...
#include <iostream> #include <string> using namespace std; int main() { int N, M, K; cin >> N >> M >> K; if (N * M >= K) { cout << "YES"; } else { cout << "NO"; } return 0; }