Untitled
unknown
c_cpp
2 years ago
203 B
5
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...