Untitled
Anonymous
c_cpp
10/05/2023 5:50 PM
272 B
13
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...