Computer Science, asked by yadavdresses9246, 1 year ago

Max is a function that accepts two int parameters and returns the value of the larger one

Answers

Answered by shefalibajaj2810
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