fork download
  1. # template for the course Functional Python 101
  2.  
  3. def get_answer(n):
  4. return n * 2
  5.  
  6. def main():
  7. n = int(input())
  8. print(get_answer(n))
  9.  
  10. main()
  11.  
Success #stdin #stdout 0.03s 9620KB
stdin
Standard input is empty
stdout
Standard output is empty