a=int(input("enter num1: ")) b=int(input("enter num2: ")) c=int(input("enter num3: ")) avg=(a+b+c)/3 print("avg=",avg)