import asyncio


async def f():
    await asyncio.ensure_future(f())
    

async def main():
	await f()
	

asyncio.run(main())