Untitled
unknown
c_cpp
2 years ago
155 B
8
Indexable
#include <iostream>
using namespace std;
int main(){
bool A;
cin >> A;
if (0 <= A <= 10^6)
cout << "YES";
else
cout << "NO";
return 0;
}Editor is loading...
#include <iostream>
using namespace std;
int main(){
bool A;
cin >> A;
if (0 <= A <= 10^6)
cout << "YES";
else
cout << "NO";
return 0;
}