#include <stdio.h>
void hoge(int n){
int i;
for(i=1;i<=n;i++)
printf("%d ",i);
}
int main(){
hoge(3);
return 0;
}
