1#include <iostream>
2#include <cstdlib>
3
4std::string text = "hello";
5std::string moretext = "there";
6std::string together = text + moretext;
7std::cout << together << std::endl;
8
9>> hello there
1int x=5;
2int y= 10;
3
4int z = x+y;//z==15
5
6string s1="Abhi";
7string s2="gautam";
8
9string s3= s1+s3;//s3==Abhigautam
10