#a program to ad the first six natural numbers ## ##def main(): ## promptOne="Enter a number" ## #n = int(input("Enter the number of natural numbers to be summed:")) ## n=int(input(promptOne)) ## total = 0 ## for number in range(1,n+1): ## total = total + number ## print("The sum of the first",n,"natural numbers is",total) ## def main(): print("tell user what is going on") ## x1=float(input("prompt fopr x1")) ## y1=float(input("prompt for y1")) x1,y1=float(input("Enter the corrdinates for the first point in x1, y1 format: ")) print(x1,y1) main()