0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 01:08:47 +00:00

P4413 [COCI2006-2007#2] R2

R39857615
This commit is contained in:
Baoshuo Ren 2020-10-15 20:01:34 +08:00 committed by Baoshuo Ren
parent 80d695997a
commit bd5de06d06
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
problem/P4413/P4413.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int s, r1;
cin >> r1 >> s;
cout << s * 2 - r1 << endl;
return 0;
}