void main() { string a = "Hello"; string b = "World"; print(a + ' ' + b + "!"); int c = 2; int d = 3; // print(c + d); }