Max is a function that accepts two int parameters and returns the value of the larger one
Answers
Answered by
0
Answer:
i am writing the answer in python :
def max(q,w):
if q>w:
print(q)
else:
print(w)
a=input("")
b=input("")
x=max(a,b)
Explanation:
Similar questions