Lucian_Adrian

https://www.pbinfo.ro/probleme/3620/cmmk

Oct 19th, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. int n,k,ok=0;
  10.  
  11. cin>>n>>k;
  12.  
  13. while (n>0)
  14.  
  15. {
  16.  
  17. if (n%10>k) ok++;
  18.  
  19. n=n/10;
  20.  
  21. }
  22.  
  23. if (ok==0) cout<<"DA";
  24.  
  25. else cout<<"NU";
  26.  
  27. return 0;
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment