fork download
  1. Name ="Aarav"
  2. Age = "12"
  3. DadAge = "42"
  4. print("My name is " + Name)
  5. print ("I am ", end="")
  6. print(Age+" years old")
  7. #It creates a message
  8. print ("first word" + "second word")
  9. print ("first word" , "secound word")
Success #stdin #stdout 0.07s 14092KB
stdin
Standard input is empty
stdout
My name is Aarav
I am 12 years old
first wordsecond word
first word secound word