본문 바로가기
언어/파이썬

코드업 6059/6060 비트단위로 NOT/and 하여 출력하기

by tovantablack 2021. 4. 23.
728x90
728x90

6059

print(~int(input()))

 

6060

a, b = map(int, input().split())
print(a&b)

728x90
728x90

댓글