boris-vlasenko

52

Jan 12th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. k = list(map(int,input().split()))
  2. res = True
  3. for i in range(1,len(k)):
  4.     if k[i] < k[i-1]:
  5.         res = False
  6.         break
  7. print (res)
Advertisement
Add Comment
Please, Sign In to add comment