This commit is contained in:
2022-05-13 21:37:46 +02:00
parent 05152f47f0
commit 737380e6f0

7
r2.py Normal file
View File

@@ -0,0 +1,7 @@
import sys
r1, s = sys.stdin.readline().split(' ')
r1 = int(r1)
s = int(s)
print(s*2 - r1)