• This project
    • Loading...
  • Sign in

김재현 / gitbranch-assignment2

%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
  • gitbranch-assignment2
  • main.cpp
  • Jaehyun Kim's avatar
    program · c724ff79
    c724ff79
    Jaehyun Kim authored 2020-09-25 14:43:59 +0900
main.cpp 243 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
//  main.cpp
//  echo
//
//  Created by toispre on 2020/09/25.
//  Copyright © 2020 toispre. All rights reserved.
//

#include <iostream>
using namespace std;
int main() {
    string a;
    cin >> a;
    cout << a << endl;
    return 0;
}