boris-vlasenko

6

Sep 25th, 2015
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. a = int(input('a='))
  2. b = int(input('b='))
  3. c = int(input('c='))
  4.  
  5. #print(max(a,b,c))
  6. m = a
  7. if b > m:
  8.     m = b
  9. if c > m:
  10.     m = c
  11.    
  12. print(m)
Advertisement
Add Comment
Please, Sign In to add comment