josiftepe

Untitled

Nov 1st, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.    int redica;
  8.    int kolona;
  9.    int x;
  10.    int y;
  11.  
  12.    cin>>redica;
  13.    cin>>kolona;
  14.  
  15.    cin>>x;
  16.    cin>>y;
  17.  
  18.  
  19.    if((x<=redica) and (y<=kolona)and(y>0) and (x>0)){
  20.     cout<<"DA"<<endl;
  21.    }
  22.  
  23.    if((x>redica) or (y>kolona)or(x<=0)or(y<=0)){
  24.     cout<<"NE"<<endl;
  25.    }
  26.  
  27.  
  28.     return 0;
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment