Based on the given instructions:
1. you must set the display format for all values: %0.2f
2. use f-string in this format: f"{}" and add your value in {}
3. int: convert float to integer and round: round up the number
num1 = float(input())
num2 = float(input())
num3 = float(input())
average = (num1+num2+num3) / 3
your_value = num1*num2*num3
print('%0.0f %0.0f %0.2f %0.2f' % (int(average), int(your_value), average, your_value))
# or:
print(f"{int(average)} {int(your_value)} {round(average,2)} {round(your_value,2)}")
Read more about floating point numbers here:
https://brainly.com/question/13440970
#SPJ1