randomSpace / app.py
complete-dope
5th
23906f6
raw
history blame contribute delete
No virus
119 Bytes
print('this is app py ')
def add(a,b):
return a+b
add(1,2)
if __name__ == '__main__':
print("this executed")