Skip to content

Commit 46afd90

Browse files
committed
atcoder/abc020B
1 parent ff36e8d commit 46afd90

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

atcoder/abc020/B/main.cpp

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#include <bits/stdc++.h>
2+
3+
using namespace std;
4+
using ll = int64_t;
5+
using ff = long double;
6+
7+
int main() {
8+
ios_base::sync_with_stdio(false);
9+
cin.tie(0); cout.tie(0);
10+
11+
string A, B;
12+
cin >> A >> B;
13+
stringstream ss(A + B);
14+
int C;
15+
ss >> C;
16+
cout << (C * 2) << endl;
17+
18+
return 0;
19+
}

0 commit comments

Comments
 (0)