fork download
  1. def silly_age_joke():
  2. print('Сколько вам лет?')
  3. age = int(sys.stdin.readline())
  4. if age >= 10 and age <= 13:
  5. print('13 + 49 + 84 + 155 + 97: что получится? Головная боль!')
  6. else:
  7. print('Что-что?')
  8.  
Success #stdin #stdout 0.02s 28384KB
stdin
Standard input is empty
stdout
Standard output is empty