Untitled

Anonymous
c_cpp
10/12/2023 6:08 PM
284 B
18
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";

	}
}
Editor is loading...