untitle

public
yousefkarem91 Sep 12, 2024 Never 73
Clone
C++ past.cpp 10 lines (10 loc) | 161 Bytes
1
#include <bits/stdc++.h>
2
using namespace std;
3
int main()
4
{
5
int k,x;cin>>k>>x;
6
if(k*500>=x)
7
cout<<"Yes";
8
else
9
cout<<"No";
10
}