[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1x, y = map(int, input().split()) 2if x < y: 3 x, y = y, x 4 5while True: 6 x, y = y, x % y 7 if y == 0: 8 break 9print(x)