题解 | #SuperGCD#
SuperGCD
https://ac.nowcoder.com/acm/problem/50563
import sys
import math
a=int(input())
b=int(input())
print(math.gcd(a,b))
SuperGCD
https://ac.nowcoder.com/acm/problem/50563
import sys
import math
a=int(input())
b=int(input())
print(math.gcd(a,b))
相关推荐