#!/usr/bin/env python3
from time import sleep
from itertools import count

for i in count():
    sleep(1/3)
    print(i)
