d583.
幼稚的企鵝
--
jack1
| From: [27.155.81.51] |
發表日期
:
2013-10-03 19:09
/**********************************************************************************/
/* Problem: d583 "幼稚的企鵝" from jack1 */
/* Language: CPP (197 Bytes) */
/* Result: AC(20ms, 256KB) judge by this@ZeroJudge */
/* Author: a450 at 2013-10-03 13:10:07 */
/**********************************************************************************/
#include <cstdio>
int main(){
int n, a;
while(scanf("%d", &n)==1){
for(int i=1; i<=n; i++) scanf("%d", &a);
for(int i=1; i<=n; i++) printf("%d ", i);
printf("\n");
}
return 0;
}