Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. int a = Convert.ToInt32(Console.ReadLine());
  3. int b = Convert.ToInt32(Console.ReadLine());
  4. a = Math.Max(a, b);
  5. b = Math.Min(a, b);
  6.  
  7. if (a != b)
  8. {
  9. while(a > b)
  10. {
  11. a = a - b;
  12. }
  13. }
  14. Console.WriteLine(a);
  15. Console.ReadLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement