#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main() {
  string sentence{"Hello how are you."};
  stringstream ss{sentence};
  string junkWord;
  ss >> junkWord;//to get rid of first word
  //cout<<sentence.substr(junkWord.length()+1);
  cout<<ss.str();
}
