Toggle navigation
Toggle navigation
This project
Loading...
Sign in
진재영
/
opensourcesw_jj
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
진재영
2022-04-01 02:13:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
76b246bbe700e39ffd0cf522e0f66f61de23a5ee
76b246bb
0 parents
Echo program added
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
main.cpp
main.cpp
0 → 100644
View file @
76b246b
1
+
2
+
#include <iostream>
3
+
#include <string>
4
+
using
namespace
std
;
5
+
6
+
int
main
(
void
){
7
+
string
input
;
8
+
cin
>>
input
;
9
+
cout
<<
input
;
10
+
11
+
return
0
;
12
+
}
Please
register
or
login
to post a comment