본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#165 백준 파이썬 [3046] R2

https://www.acmicpc.net/problem/3046

 

#Solution

R1, S = map(int, input().split())
print(2*S - R1)