I have tried to figure this out on my own forever now. I have been getting hint from the net but can't figure it out. So I figured I would admit defeat and see what you guys could show me. I need the three numbers entered into this program to add together, as of right now they aren't adding. The numbers are just showing up. EDIT: I AM A NOOB AT PROGRAMMING
def main():
print("Adding:")
a = input("Please select a number:")
b = input("And another one:")
c = input("One more please:")
d = a+b+c
print(d)
main()