You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a program where a user is prompted to specify a range between two numbers and sum all the multiples of 3 within that range. Use functions to write this program.
'''
def get_input():
input1 = int(raw_input("Enter the first range\n"))
input2 = int(raw_input("Enter the second range\n"))