Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. from IPython.core import debugger
  2. debugger = debugger.Pdb().set_trace
  3. _stdin="""2 0
  4. 0 0 100 10
  5. 0 0 200 15"""
  6.  
  7. def _input():
  8. for i in _stdin.split('\n'):
  9. yield i
  10.  
  11. g=_input()
  12. def input():
  13. return next(g)
  14.  
  15. n, index = [int(i) for i in input().split()]
  16. for i in range(n):
  17. x, y, z, r = [int(j) for j in input().split()]
  18.  
  19. print(input())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement