Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김재현
/
gitbranch-assignment2
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
Jaehyun Kim
2020-09-25 14:43:59 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c724ff793fd89309fd8942e978128a24a86e103d
c724ff79
1 parent
981a4b5b
program
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
main.cpp
main.cpp
0 → 100644
View file @
c724ff7
1
+
//
2
+
// main.cpp
3
+
// echo
4
+
//
5
+
// Created by toispre on 2020/09/25.
6
+
// Copyright © 2020 toispre. All rights reserved.
7
+
//
8
+
9
+
#include <iostream>
10
+
using
namespace
std
;
11
+
int
main
()
{
12
+
string
a
;
13
+
cin
>>
a
;
14
+
cout
<<
a
<<
endl
;
15
+
return
0
;
16
+
}
Please
register
or
login
to post a comment