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