다음 코드는 정수 N 의 절댓값 |N| 을 출력해야 하지만 부호 처리가 어긋나 있다. 올바른 결과를 출력하라.
n = int(input()) if n > 0: print(-n) else: print(n)
-10^9 ≤ N ≤ 10^9
5
-3
3
0