본문 바로가기

코딩테스트/BOJ

[백준/파이썬] 3046번: R2(Python)

백준 3046번

풀이

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