talking = "hello, im dl"
if true:
print(talking)
hello_saying = "hello"
my_name = "dl"
cando = True
if cando:
print(hello_saying + " " + my_name)
x = "awesome"
print("Python is " + x)
x = "Python is "
y = "awesome"
z = x + y
print(z)
x = 5
y = 10
print(x + y)
x = 5
y = "John"
print(x + y)