Advertisement
sztosz

Untitled

Mar 9th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. from sys import stdin
  2.  
  3. x = stdin.readline().split()
  4. y = stdin.readline().split()
  5.  
  6. print(*y[int(x[1]):] + y[:int(x[1])])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement