Reference the variable names provided below (int_1, int_2, float_1, float_2) to carry out the following calculations:
Set ans_1 as the result of int_1 divided by int_2
Set ans_2 as the result of float_1 multiplied by float_2, with int_2 then added
Set ans_3 as the result of float_1 divided by int_1, the result of which is then raised to the power 2.
Set ans_4 as the result of the remainder of int_1 divided by int_2
# These variables provided for you
int_1 = 27
int_2 = 9
float_1 = 9.5
float_2 = 19.0