Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """
- Data Types and Variables - More Exercises
- Check your code: https://judge.softuni.bg/Contests/Practice/Index/1723#0
- SUPyF2 D.Types and Vars More Exercises - 01. Biggest of 3 Numbers
- Problem:
- Write a program that finds the biggest of 3 numbers.
- The input comes as 3 integers.
- The output is the biggest from the input numbers.
- Examples:
- Input:
- -2
- 7
- 3
- Output:
- 7
- Input:
- 130
- 5
- 99
- Output:
- 130
- """
- print(max(int(input()), int(input()), int(input())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement