• This project
    • Loading...
  • Sign in

김서연 / OS_Assignment

%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
  • OS_Assignment
  • echo.cpp
  • 김서연's avatar
    Add echo file · a0706a9c
    a0706a9c Browse Files
    김서연 authored 2021-04-01 11:34:54 +0900
echo.cpp 90 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
#include <iostream>
using namespace std;

int main() {
	string n;
	cin >> n;
	cout << n;
}