string s = "B"; int i = 20; print("A"); print("A" + 10); print(10 + "A"); print("A" + i); print(i + "A"); print(s + 10); print(10 + s); print(s + i); print(i + s); print("This is about the " + i + "th time I've tried to get plan " + s + " to work"); print("For $" + 0.02 + " I'd just rewrite it from scratch."); print(1 + 2 + 3 + " six maybe?");