In c++ you can make your own manipulators. Its very is and is fun.
Here I will show you an example a simple one. I tried to make it similar to an american drama serial The originals.
it depends or changes from compiler to compiler and version to version of same compiler.
So make sure you check the documents of your compiler.
#include iostream
#include string
#include iomanip
using namespace std;
istream &getori(istream &ori){
cout<<"any questions about the originals?"<<endl;
return ori;
}
int main(){
string questions;
cin>> getori >>questions;
return 0;
}