Program Python dasar
print("Basic Programs")
s = input("Enter your name")
print("Hi" + s)
VScoder
print("Basic Programs")
s = input("Enter your name")
print("Hi" + s)
print('hello world')
#most simple thing i know
while True:
print('hello world')
#second most simple thing i know