[정올] Language Coder_연산자_형성평가5_code115(Python)

두비니

·

2021. 1. 28. 17:49

 

 

a, b = input().split()
c, d = input().split()

a, b, c, d = int(a), int(b), int(c), int(d)

print("%d"%((a>c) and (b > d)))

 

 

if문을 이용해서 구현할 수도 있지만, 카테고리가 연산자인만큼 연산자로 구현하였습니다.