Advertisement
HaciyevAlik

Untitled

Oct 20th, 2022
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main(){
  5. int n;
  6. cin>>n;
  7. if( (n%2!=0) || (n>=99 && n<=999) ){
  8. cout<<"YES";
  9. }
  10. else{
  11. cout<<"NO";
  12. }
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement