xxxxxxxxxx
//numbers
int a = 2;
int b = 3;
int c = 4;
int d = 10;
float e = 2.5;
float f = 4.5;
float g = 10.5;
//words and phrases
String A = "When I was younger I had";
String B = "dogs.";
String C = "cats.";
String D = "dog";
String E = "cat";
String F = "The oldest";
String G = "The next";
String H = "The second";
String I = "The third";
String J = "was a";
String K = "was";
String L = "and";
String M = "poodle";
String N = "terrier";
String O = "border collie";
String P = "calico";
String Q = "persian";
String R = "tabby";
String S = "years old.";
String T = "All of the";
String U = "Only two of the";
String V = "They both";
String W = "got along";
String X = "disliked each other";
String Y = "and they";
String Z = "played";
String Z1 = "fought";
String Z2 = "with each other all day.";
String Z3 = "dogs";
println (A, b, B);
println (F, D, J, M, L, K, g, S);
println (H, D, J, N, L, K, c, S);
println (I, D, J, O, L, K, a, S);
println (T, Z3, W, Y, Z, Z2);