Toggle navigation
Toggle navigation
This project
Loading...
Sign in
윤성아
/
PushPull
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 04:38:08 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0272e3dc0b2665e4565e7fa5733e3b2a012abaf0
0272e3dc
0 parents
echo program
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 @
0272e3d
1
+
#include <stdio.h>
2
+
#include <iostream>
3
+
#include <string>
4
+
using
namespace
std
;
5
+
6
+
int
main
()
{
7
+
string
input
;
8
+
cin
>>
input
;
9
+
cout
<<
input
<<
endl
;
10
+
return
0
;
11
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment