<sstream> stringstream ss.clear();
stringstream ss; int n=100; ss<<n; string str=ss.str();
stringstream ss; string str="100"; ss<<str; int n; ss>>n;