Untitled

Anonymous
plain_text
10/13/2023 2:03 PM
216 B
21
Indexable
#include <iostream>
using namespace std;
int main()
{
int N;
int M;
int K;
cin » N » M » K;
if (N * M >= K) {
cout « "YES";
}
else cout « "NO";
}
Editor is loading...