Untitled
unknown
c_cpp
2 years ago
167 B
4
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";
}
}