저는 이 문제를
a = int(input())
if a == 1:
print(int(False))
elif a == 0:
print(int(True))
이렇게 풀었는데 다른 풀이에는
c언어로는 scanf 와 파이썬은bool을 썻는데 각각 무슨뜻이고 어디에 사용하나요?