Hi there, im relatively new to python and i just can't figure out parameters... Any help with this code?
def main():
getInputs()
answer = calculateWork()
print (answer)
def getInputs(a,b):
num1 = int(input("Please enter your first number: "))
num2 = int(input("Please enter your second number "))
return num1,num2
def calculateWork():
return a*b
I'm really stuck on how to pass variables...