목록코딩테스트 (187)
Note
[codeup] 113. 논리 연산자(OR)
a,b = map(int,input().split()) if a or b: print(1) else: print(0)
etc/Coding Test
2022. 1. 12. 19:44
[codeup] 112. 논리 연산자(AND)
a,b = map(int,input().split()) if a and b: print(1) else: print(0)
etc/Coding Test
2022. 1. 11. 22:19
[codeup] 111. 논리 연산자(NOT)
n = int(input()) print(int(not n))
etc/Coding Test
2022. 1. 10. 01:16
[codeup] 110. 관계연산자 2
a,b = map(int, input().split()) if a==b: print(1) else: print(0)
etc/Coding Test
2022. 1. 9. 22:38