fork(1) download
  1. # your code goes here
  2.  
  3. num=int(input("enter an number:"))
  4.  
  5. if num%2==0:
  6. if num>10 and num<90:
  7. print(str(num)+ " is two digit number")
  8.  
  9.  
  10. else:
  11. print(str(input)+"is not two digit number")
  12. sorry=(" better luck next time")
  13. print(sorry)
  14.  
  15.  
Success #stdin #stdout 0.03s 9240KB
stdin
21
stdout
enter an number:<built-in function input>is not two digit number
 better luck next time