summaryrefslogtreecommitdiff
path: root/sem_5/codingbattle/ex4/ex4.cpp
blob: 2067e609b01a75fecf074412b4f2c98cfd53ecc2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <string>
using namespace std;

int main (int argc, char ** argv){
  string a;
  cin >> a;
  cout << a << endl;
return 1;
}