fork download
  1. print "Enter your name"
  2. x = raw_input()
  3. y = raw_input("age >>>") #age>>> will be printed before input
  4. print "Your name is",x,"and","and your age is",y,
Success #stdin #stdout 0.01s 9032KB
stdin
xyz
12
stdout
Enter your name
age >>>Your name is xyz and and your age is 12