Strings

String s,t;
String s="Hello", t="World";
String s = "Hello";
String t = "World";
String u = s + " " + t;