Assume you are given a float variable named price_float containing 19.99. Create two new integer variables:
price_int_truncated: the integer obtained by chopping off everything after the decimal point (toward zero).price_int_rounded: the integer obtained by rounding price_float to the nearest whole number.For this input, the two integers should NOT be equal.