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