#!/usr/bin/python
# -*- coding: utf-8 -*-

def counter(i):
	k = 0
	while k<i:
		print k
		k += 1
 
