본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24079번 移動 (Moving)

by 현장 2022. 1. 15.

-코드

x = int(input())
y = int(input())
z = int(input())
if x + y > z:
    print(0)
else:
    print(1)