Skip to content

Instantly share code, notes, and snippets.

@TranNgocMinh
Created February 4, 2018 06:35
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 TranNgocMinh/984e408c957a7a351d22462f39d4c6f1 to your computer and use it in GitHub Desktop.
Save TranNgocMinh/984e408c957a7a351d22462f39d4c6f1 to your computer and use it in GitHub Desktop.
def Max(a,b):
max = 0
if a>b:
max=a
else:
max=b
return max
a = float(raw_input("Nhap so thu nhat:"))
b = float(raw_input("Nhap so thu hai:"))
print "So lon nhat la:",Max(a,b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment