Advertisement
Guest User

NOD

a guest
Jan 23rd, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <math.h>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a,b;
  8. cin>>a>>b;
  9.         while(a > 0 && b > 0)
  10.  
  11.             if(a > b)
  12.                 a %= b;
  13.  
  14.             else
  15.                 b %= a;
  16.  
  17.     cout<<a+b;
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement