Create 1910.cpp

pull/45/head
Kirigaya Kazuto 2016-12-07 19:13:34 +08:00 committed by GitHub
parent f74609c1c5
commit 6d3250fb4f
1 changed files with 10 additions and 0 deletions

10
QUSTOJ/1910.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <iostream>
#include <string>
using namespace std;
int main()
{
string a;
getline(cin,a);
cout<<a<<endl;
return 0;
}