#include <iostream>
using namespace std;
int main ()
{
// declare integers
string something;
cout << "Please write something" <<endl;
cin >> something;
cout << "Thanks!" <<endl;
cout << "You just wrote: " <<something <<endl;
return 0;
}