Lucian_Adrian

Untitled

Aug 4th, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. int a, b, x;
  5. cin >> a >> b >> x;
  6. if(a <= x && x <= b)
  7. cout << "DA";
  8. else
  9. cout << "NU";
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment