Untitled

mail@pastecode.io avatar
unknown
c_cpp
a year ago
211 B
1
Indexable
#include <iostream>
#include <string>
using namespace std;


int 
main() {
	int a;
	int b;
	int c;

	cin >> a >> b >> c;
	if (a * b >= c) {
		cout << "YES";
	}
	else {
	
		cout << "NO";

	}
}