Untitled
unknown
c_cpp
2 years ago
200 B
3
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";
return 0;
}Editor is loading...