Python/CodeUp
1059 - 비트단위로 NOT 하여 출력하기
GLOWWW
2021. 2. 19. 14:22
num = input()
num = int(num)
print(~num)
num = input()
num = int(num)
print(~num)