14 lines
88 B
Python
14 lines
88 B
Python
|
#!/usr/bin/python3
|
||
|
import sys
|
||
|
|
||
|
def main() -> int:
|
||
|
print("IT WORKS!")
|
||
|
|
||
|
return 0
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|