#write a function that calculates the values of the #math expression z = 1.2*x + 3.4*y + 5 #for all integer values of x and y between 1 and 3 inclusively #x=1 y=1, x=1 y=2, x=1 y=3 #x=2 y=1, x=2 y=2, x=2 y=3 #x=3 y=1, x=3 y=2, x=3 y=3 def math_calc(): for x in range(1, 4): for y in range(1,4): print(1.2*x+3.4*y+5) def main(): math_calc() main()