9 lines
270 B
Python
9 lines
270 B
Python
|
#!/usr/bin/python3
|
||
|
################################################################################
|
||
|
# Python script which just prints the flag
|
||
|
################################################################################
|
||
|
|
||
|
flag ='picoCTF{run_s4n1ty_run}'
|
||
|
print(flag)
|
||
|
|