Skip to content

Instantly share code, notes, and snippets.

@SakibFarhad
Created June 9, 2016 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SakibFarhad/ea73ef421e9a45076404106ea00e6d13 to your computer and use it in GitHub Desktop.
Save SakibFarhad/ea73ef421e9a45076404106ea00e6d13 to your computer and use it in GitHub Desktop.
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