Untitled
unknown
plain_text
2 years ago
186 B
7
Indexable
#include <iostream>
using namespace std;
int main()
{
float n,m,k;
cin >> n >> m >> k;
if(n * m >=k)
cout << "YES";
else
cout << "NO";
return 0;
}
Editor is loading...