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

count = 0
while (count < 9):
    print(count)
    count = count + 1

print("end.")