Answer:
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = int(input("Enter third number: "))
avg = (a + b + c) / 3
product = a * b * c
print(str(int(avg)) + " " + str(product))
print(str(avg) + " {:.1f}".format(product))
Explanation:
*The code is in Python
Ask the user for three integers, a, b, and c
Calculate their average, sum the numbers and divide by 3
Calculate their product
Print avg and product as integer numbers, be aware that I type casted the avg to int
Print avg and product as floating point numbers, be aware that I used format method to print one decimal for product