xxxxxxxxxx
// Numbers
int date = 18;
int numCoffee = 2;
float dollarMaria = 12.5;
float dollarPaul = 8.67;
float prizeCoffee = 3.48;
//Words and Phrases
String phrase1 = "On September" ;
String sentence1 = "Maria and Pual went to the mall.";
String phrase2 = "Maria had";
String phrase3 = "dollars and Pual had";
String word1 = "dollars.";
String phrase4 = "Totally, they had";
String word2 = "dollars.";
String phrase5 = "They wanted to buy";
String phrase6 = "coffees from starbuck.";
String phrase7 = "Each of coffees was";
String word3 = "dollars.";
String sentence2 = "Do they have enough money to buy coffees?";
// Result
println (phrase1, date , "," , sentence1 , phrase2 , dollarMaria , phrase3 , dollarPaul , word1 , phrase4 , dollarMaria + dollarPaul , word2 , phrase5 , numCoffee , phrase6 , phrase7 , prizeCoffee , word3 , sentence2);