#P2001. 01子串

01子串

No testdata at current.

Background

普及班第一节课

Description

对于长度为 3 位的一个 0、1 串,每一位都可能是 0或 1,一共有 8 种可能。它们的前几个是:

000

001

010

……

请按从小到大的顺序输出这 8 种 01 串,每输出一个子串需换行。

Format

Input

Output

000 001 010 011 100 101 110 111

Samples

000
001
010
011
100
101
110
111

Limitation

1s, 1024KiB for each test case.