[Baekjoon] #24086 (Height)

REi·2024년 7월 22일

Baekjoon 브론즈 V

목록 보기
55/72

> 문제


> 핵심 내용

  • int()
  • input()
  • print()
  • 뺄셈 연산자 -

> 결과

> 결과 코드

# 백준 #24086 (Height)


# Previous_Height 입력
Previous_Height = int(input())

# Present_Height 입력
Present_Height = int(input())

# 결과 출력
print(Present_Height - Previous_Height)

0개의 댓글