#accept 10 numbers from the user and display their average
no1= int(input("Enter 1 number:"))
no2=int(input("Enter 2 number:"))
no3=int(input("Enter 3 number:"))
s= no1+no2+no3
a=(no1+no2+no3)/3
print(s)
print(a)
Study more about Python at Python Class 10