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