游客 Signup | Login
中文 | En

3068 - 数字之和为8

找出两位数中数字之和为8的数

Input

Output

Examples

Input

no input needed

Output

17
26
35
44
53
62
71
80

Solution C++

#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
	printf("17\n26\n35\n44\n53\n62\n71\n80");
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题