Note

[codeup] 113. 논리 연산자(OR) 본문

etc/Coding Test

[codeup] 113. 논리 연산자(OR)

알 수 없는 사용자 2022. 1. 12. 19:44
728x90
a,b = map(int,input().split())
if a or b:
  print(1)
else:
  print(0)
Comments