10 0
0으로 나눌 수 없습니다
a, b = map(int, input().split()) try: print(a / b) except ZeroDivisionError: print('0으로 나눌 수 없습니다')