Cometin'

BOJ-3046 - Python

2020-07-11 at Algorithm category

a + X / 2 = b일 때, a와 b를 입력받고 X를 구하는 문제. b*2-a하여 간단히 풀었다.

a, b = map(int, input().split())
print((b * 2) - a)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.