Advertisement
SimeonTs

SUPyF2 Basic - 01. Biggest Of Three Numbers

Sep 19th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | None | 0 0
  1. """
  2. Basic Syntax, Conditional Statements and Loops - Lab
  3. Check your code: https://judge.softuni.bg/Contests/Practice/Index/1718#0
  4. Video: https://www.youtube.com/watch?v=sP_t7cbZF7c
  5.  
  6. SUPyF2 Basic - 01. Biggest Of Three Numbers
  7.  
  8. Problem:
  9. Write a program that receives three whole numbers and print the biggest one
  10.  
  11. Example:
  12.  
  13. Input:
  14. 3
  15. -1
  16. 5
  17. Output:
  18. 5
  19.  
  20. Input:
  21. 0
  22. -1
  23. -2
  24. Output:
  25. 0
  26. """
  27. print(max(int(input()), int(input()), int(input())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement