Lucian_Adrian

Untitled

Aug 11th, 2021
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b;
  7. cin >> a >> b;
  8. if ((a<0 && b<0) || (a>=0 && b>=0))
  9. cout << "da";
  10. else
  11. cout << "nu";
  12.  
  13. return 0;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment