# Arup Guha
# 5/13/2022
# Step Program

# Get user input.
goal = int(input("What is your daily step goal?\n"))
curSteps = int(input("How many steps do you have right now?\n"))

# Subtract to get what we need.
stepsLeft = goal - curSteps

# Display the result.
print("You need",stepsLeft,"more steps to meet your goal.")
               
