fork(1) download
  1.  
  2. # your code goes here
  3.  
  4. me="you"
  5. you="are"
  6. both="mine"
  7.  
  8. print(me+" "+you+" "+both)
  9.  
  10. print("{} {} completely {}".format(me,you,both))
  11.  
  12. hope="{} {} completely {}"
  13. print(hope.format(me,you,both))
  14.  
  15. me1="the"
  16. you1="pair"
  17. both1="of"
  18. love="the world"
  19.  
  20. print("we are"+" "+me1+" "+you1+" "+both1+" "+love)
  21.  
  22. print("we are {} {} {} {}".format(me1,you1,both1,love))
  23.  
  24. the_ratchasi="we are {} {} {} {}"
  25. print(the_ratchasi.format(me1,you1,both1,love))
  26.  
  27.  
Success #stdin #stdout 0.05s 9468KB
stdin
Standard input is empty
stdout
you are mine
you are completely mine
you are completely mine
we are the pair of the world
we are the pair of the world
we are the pair of the world