Run ID:89653

提交时间:2024-08-28 00:34:18

a,b,c=map(int,input().split()) for x in range(2,min(a,b,c)+1): if a%x==b%x==c%x: print(x) break