提交时间:2025-01-25 12:08:30

运行 ID: 5256

#include <bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; int temp = d * 1000; int f = a * b * c; if(f >= temp) { cout<<"Yes"<<endl; } else if(f < temp) { cout<<"No"<<endl; } return 0; }