Problem D: 规律循环-练习四训练

Problem D: 规律循环-练习四训练

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 504  Solved: 352
[Status] [Submit] [Creator:]

Description

请将以下程序归纳成循环结构
int n;
cin>>n;
cout<<n+2*20<<" ";
cout<<n+4*18<<" ";
cout<<n+6*16<<" ";
cout<<n+8*14<<" ";
cout<<n+10*12<<" ";
cout<<n+12*10<<" ";
cout<<n+14*8<<" ";
cout<<n+16*6<<" ";
cout<<n+18*4<<" ";
cout<<n+20*2<<" ";

Input

仅一行,一个正整数。

Output

一行,输出若干个正整数,数字之间用空格隔开

Sample Input Copy

1

Sample Output Copy

41 73 97 113 121 121 113 97 73 41