from fractions import gcd
a,b = map(int, input().split())
for i in range(int(gcd(a,b))):
print(1, end="")
'백준 알고리즘 > 수학' 카테고리의 다른 글
백준 1463번 파이썬 (0) | 2018.10.07 |
---|---|
백준 1912번 파이썬 (0) | 2018.10.03 |
백준 2609번 파이썬 (0) | 2018.10.03 |
백준 13241번 파이썬 (0) | 2018.10.03 |
백준 1934번 파이썬 (0) | 2018.10.03 |