Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """
- Basic Syntax, Conditional Statements and Loops - Lab
- Check your code: https://judge.softuni.bg/Contests/Practice/Index/1718#0
- Video: https://www.youtube.com/watch?v=sP_t7cbZF7c
- SUPyF2 Basic - 01. Biggest Of Three Numbers
- Problem:
- Write a program that receives three whole numbers and print the biggest one
- Example:
- Input:
- 3
- -1
- 5
- Output:
- 5
- Input:
- 0
- -1
- -2
- Output:
- 0
- """
- print(max(int(input()), int(input()), int(input())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement