Problem X: Counting

Write a program that prints the numbers from 1 to 10.

Input Specification

This program has no input. That is, standard input has 0 lines. This is not to be confused with input that has one line which is empty (has 0 characters).

Output Specification

You should print all the integers x that satisfy the inequality 1 <= x <= 10 in ascending order. That is, if x < y, x should be printed before y. Each integer should appear on a separate line.

Sample Input

Output for Sample Input

1
2
3
4
5
6
7
8
9
10

Problem Y: Straight as an Arrow

Each test case consists of 6 integers on a line denoting coordinate pairs for three points. For each test case, print a line of output stating "colinear" or "not colinear" depending on whether or not the points all lie on the same line. A line containing 0 0 0 0 0 0 follows the last test case.

Sample Input

1 1 2 2 3 3
1 1 2 2 3 4
0 0 0 0 0 0

Output for Sample Input

colinear
not colinear