Welcome to Mauricio's Homework 2

1 + 2 = 3 integer

1 . 2 = 12string

1 + 2.0 word = 3 double

1 . 2.0 word = 2 double

1.0 word + 2 = 3 double

1.0 word . 2 = 2 double

1.0 word + 2 = 3 double

1.0 word . 2 = 2 double

a. I believe that a int plus a double results a double because double is priority than integer
b. I think that a string starting with a numerical value plus a number results a number because the number in the string is read first.
c. String plus double results double because double is priority over a string I believe.