x = 10 y = 5 print(x) # 10 print("x is ",x) # x is 10 print(x,y) # 10 5 print("sum of", x, "and", y, "is", x+y) # sum of 10 and 5 is 15 mCar = "A" print(mCar * y) # AAAAA