提交时间:2025-01-23 17:48:20
运行 ID: 5204
#include <bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin >> a>>b>>c>>d; if(a*b*c/1000 >= d){ cout << "Yes"; }else{ cout << "No"; } return 0; }