Untitled
unknown
c_cpp
2 years ago
211 B
9
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...