Advertisement
SimeonTs

SUPyF2 D.Types and Vars More Exercises - 01. Biggest of 3 Nu

Sep 27th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. """
  2. Data Types and Variables - More Exercises
  3. Check your code: https://judge.softuni.bg/Contests/Practice/Index/1723#0
  4.  
  5. SUPyF2 D.Types and Vars More Exercises - 01. Biggest of 3 Numbers
  6.  
  7. Problem:
  8. Write a program that finds the biggest of 3 numbers.
  9. The input comes as 3 integers.
  10. The output is the biggest from the input numbers.
  11.  
  12. Examples:
  13. Input:
  14. -2
  15. 7
  16. 3
  17. Output:
  18. 7
  19.  
  20. Input:
  21. 130
  22. 5
  23. 99
  24.  
  25. Output:
  26. 130
  27. """
  28. print(max(int(input()), int(input()), int(input())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement