10 lines
70 B
Python
10 lines
70 B
Python
|
|
|
|
|
|
|
|
def main():
|
|
print("run")
|
|
|
|
if __name__=="__main__":
|
|
main()
|