"""declare a variable add 5 to it and print its value""" x = 4 # add 5 to this variable x = x + 5 print(x) # 9