Computer Science, asked by keerthi1234567899, 9 months ago

1. Write a PYTHON program to find maximum between two numbers

Answers

Answered by prasanna26397
9

Answer:

def max(a,b):

return a if a > b else b

print(max(10,15))

output:

15

Similar questions