游客 Signup | Login
中文 | En

2958 - 循环输出数字II

按顺序输出所有的两位数。每个数字后面一个换行。

Input

本题无输入。

Output

每个数字后面有一个换行符。

Examples

Input

no input needed

Output

10
11
12
13
14
15
16
17
18
19

Solution C

#include<stdio.h>

int main()
{
	for(int i=0;i<10;i++){
		printf("%d\n",i+10);
	}
    return 0;    	
}

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题