Run »
#include
#include
using namespace std; int main () { string x = "10"; string y = "20"; string z = x + y; cout << z; return 0; }
1020