-3
양수를 입력하세요
n = int(input()) try: if n <= 0: raise ValueError(n) print(f'입력 성공: {n}') except ValueError: print('양수를 입력하세요')