18 lines
273 B
Python
18 lines
273 B
Python
import sys
|
|
import os
|
|
from pprint import pprint
|
|
import time
|
|
import math
|
|
|
|
#colors
|
|
from termcolor import colored
|
|
|
|
grid = []
|
|
|
|
with open(sys.argv[1]) as file:
|
|
for line in file:
|
|
parts,groups = line.rstrip().split()
|
|
|
|
print(parts)
|
|
print(groups)
|