10 lines
76 B
Python
10 lines
76 B
Python
from sys import exit
|
|
|
|
exit(0)
|
|
quit(0)
|
|
|
|
|
|
def main():
|
|
exit(1)
|
|
quit(1)
|