Untitled

 avatar
unknown
plain_text
2 years ago
229 B
2
Indexable
#include <iostream>
#include <string>

using namespace std;

int main() 
{

	int n,m,k;

	cin >> n >> m >> k;

	int now = n * m;
	
	if (now >= k) {
		cout << "YES";
	}
	else cout << "NO";

	return 0;
}


Editor is loading...