fork download
  1. """
  2. int1=1
  3. int2=2
  4. int3=3
  5. print(int1)
  6.  
  7. int4=20
  8. int5=0
  9. print("20+0 is equal to 20")
  10.  
  11. word1="Hello"
  12. word2="World"
  13. print(word1[0:2] + word2[0:2])
  14. """
  15. lenght=69
  16. width=67
  17. print("Area = " + str( 69*67) )
Success #stdin #stdout 0.07s 14132KB
stdin
Standard input is empty
stdout
Area = 4623