提交时间:2025-01-20 15:38:15

运行 ID: 5067

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