9 lines
103 B
Python
9 lines
103 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
|
||
|
|
||
|
content = open('content', 'r').read()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|