Note

[codeup] 112. 논리 연산자(AND) 본문

etc/Coding Test

[codeup] 112. 논리 연산자(AND)

알 수 없는 사용자 2022. 1. 11. 22:19
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