8000 Merge pull request #444 from sihyeon-kim/patch-1 · benyy0101/basic-algo-lecture@e33a4c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit e33a4c8

Browse files
Merge pull request encrypted-def#444 from sihyeon-kim/patch-1
Fix 1000.cpp
2 parents 8ca0e13 + 1f87b3d commit e33a4c8

File tree

1 file 8000 changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

0x02/solutions/1000.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Authored by : BaaaaaaaaaaarkingDog
2-
// Co-authored by : -
2+
// Co-authored by : sihyeon-kim
33
// http://boj.kr/239db99c29924302b0a9237910e0a26d
44
#include <bits/stdc++.h>
55
using namespace std;
@@ -9,5 +9,5 @@ int main(void){
99
cin.tie(0);
1010
int a, b;
1111
cin >> a >> b;
12-
cout << a << b;
13-
}
12+
cout << a + b;
13+
}

0 commit comments

Comments
 (0)
0