11 lines
172 B
Python
11 lines
172 B
Python
import json
|
|
import csv
|
|
def output_ls():
|
|
print(1)
|
|
print(2)
|
|
def main():
|
|
print("Hello World")
|
|
output_ls()
|
|
if __name__ =="__main__":
|
|
#òóïî âûâîä
|
|
main() |