Q: Implement a function that takes as input three variables, and returns the largest of the three. Do this without using the Python
max()function!
I Was Working On This Problem And I Almost Finished This But I Am Encountering A Very Silly Problem Of How To Call This Function:
def findingmax(a, b, c):
    if (a > b) and (a > c):
        print(f"Max Number Is: {a}")
    elif (b > a) and (b > c):
        print(f"Max Number Is: {b}")
    elif (c > a) and (c > b):
        print(f"Max Number Is: {c}")
    else:
        pass
Numbers = input("Enter Three Numbers: ")
print(findingmax(Numbers)
 
     
     
     
    