Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김도현
/
Test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김도현
2021-04-01 20:36:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f5433155596969e2f3a94de8d160bc7c331553a7
f5433155
0 parents
initial commit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
echo.cpp
echo.cpp
0 → 100644
View file @
f543315
1
+
#include <iostream>
2
+
using
namespace
std
;
3
+
4
+
int
main
()
{
5
+
string
input
;
6
+
cin
>>
input
;
7
+
cout
<<
input
<<
endl
;
8
+
9
+
return
0
;
10
+
11
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment