Find the greatest of 4 numbers using if-elif
a, b, c, d = map(int, input().split()) if a > b: print(max(a, c, d)) elif b > a: print(max(b, c, d))
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment