2020-05-05 20:35:55 +03:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
coordinates = [
|
|
|
|
]
|
2020-05-18 21:42:44 +03:00
|
|
|
print('map_name')
|
|
|
|
print('1')
|
2020-05-05 20:35:55 +03:00
|
|
|
for (x, y) in coordinates:
|
|
|
|
print(' {} {}'.format(x, y))
|
2020-05-18 21:42:44 +03:00
|
|
|
print('END')
|
|
|
|
print('END')
|