July 11, 2020
a + X / 2 = b일 때, a와 b를 입력받고 X를 구하는 문제. b*2-a하여 간단히 풀었다.
a, b = map(int, input().split()) print((b * 2) - a)
InstagramGitHubLinkedIn