Note
[codeup] 112. 논리 연산자(AND) 본문
728x90
a,b = map(int,input().split())
if a and b:
print(1)
else:
print(0)
'etc > Coding Test' 카테고리의 다른 글
[codeup] 114. 세 수 중 가장 작은 수 (0) | 2022.01.13 |
---|---|
[codeup] 113. 논리 연산자(OR) (0) | 2022.01.12 |
[codeup] 111. 논리 연산자(NOT) (0) | 2022.01.10 |
[codeup] 110. 관계연산자 2 (0) | 2022.01.09 |
[codeup] 109. 관계연산자 1 (0) | 2022.01.08 |
Comments