• This project
    • Loading...
  • Sign in

김건희 / merge

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • merge
  • echo.cpp
  • 김건희's avatar
    added echo.cpp · 46cd1959
    46cd1959
    김건희 authored 2022-03-31 23:24:01 +0900
echo.cpp 247 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	// º¯¼ö ¼±¾ð
	string str;

	// echo ¼öÇà
	cout << "input : ";
	cin >> str;
	cout << str;

	return 0;
}