Created
June 9, 2016 10:45
-
-
Save SakibFarhad/ea73ef421e9a45076404106ea00e6d13 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_max(): | |
a = int(raw_input()) | |
b = int(raw_input()) | |
c = int(raw_input()) | |
if a>b: | |
if a>c: | |
max_int = a | |
else: | |
max_int = c | |
else: | |
if b>c: | |
max_int = b | |
else: | |
max_int = c | |
return max_int | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment