题目描述

Write a program that prints the numbers 1 to 4 on the same line with each pair of adjacent numbers separated by one space. Do this several ways:
a) Using one statement with one stream insertion operator.
b) Using one statement with four stream insertion operators.
c) Using four statements.


输入格式

No input required.


输出格式

Prints the numbers 1 to 4 on the same line with each pair of adjacent numbers separated by one space.
Do this several ways:
a) Using one statement with one stream insertion operator.
b) Using one statement with four stream insertion operators.
c) Using four statements.


样例数据

输入


                            

输出

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

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解