• This project
    • Loading...
  • Sign in

육현진 / assign2

%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
  • assign2
  • echo.cpp
  • 육현진's avatar
    modified echo.cpp · e6469dec
    e6469dec
    육현진 authored 2020-09-25 21:54:04 +0900
echo.cpp 136 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream>
using namespace std;

int main() {
	string st;
	cin >> st;
	if (st == "exit")
		return 0;
	cout << st;

	return 0;
}