일단 빨리 풀자
 
import math 
 
n, m = map(int, input().split())
 
print(math.gcd(n, m))

+ Recent posts