fork download
  1. # your code goes here# your code goes here
  2. your_age="5"
  3. your_neighbors_age="7"
  4.  
  5. diff= your_age + your_neighbors_age
  6.  
  7. print("the difference between your age and your neighbors is ")
  8. print(diff)
Success #stdin #stdout 0.09s 14076KB
stdin
5
7
stdout
the difference between your age and your neighbors is 
57