Advertisement
maxim_shlyahtin

Shlyahtin

Sep 20th, 2022
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. a, b, c = map(int, input().split())
  2. max = 0
  3.  
  4. if a > b:
  5. max = a
  6. else:
  7. max = b
  8. if max > c:
  9. print(max)
  10. else:
  11. print(c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement