fork download
  1. import asyncio
  2.  
  3.  
  4. async def f():
  5. await asyncio.ensure_future(f())
  6.  
  7.  
  8. async def main():
  9. await f()
  10.  
  11.  
  12. asyncio.run(main())
Time limit exceeded #stdin #stdout 5s 366916KB
stdin
Standard input is empty
stdout
Standard output is empty