Computer Science, asked by Geetharajgeetharaj3, 4 months ago

write a program to find the greater of two numbers using user defined functions​

Answers

Answered by madhalaimuthucharlas
0

Answer:

def greater(a, b):

if a > b:

return print (f"{a} is greater")

else:

return print (f"{b} is greater")

greater (a,b)


Geetharajgeetharaj3: thank you
Answered by Anonymous
3

Answer:

This is your answer...

Explanation:

Attachments:

Geetharajgeetharaj3: thank you very much
Anonymous: No thx :)
Happy to help u :)
Similar questions