15 lines
163 B
Python
Executable File
15 lines
163 B
Python
Executable File
#!/usr/bin/env python
|
|
from common import parse
|
|
|
|
|
|
def solve(input):
|
|
pass
|
|
|
|
|
|
def main():
|
|
print(solve(parse("input")))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|