Cod sursa(job #541680)
Utilizator | Data | 25 februarie 2011 13:14:07 | |
---|---|---|---|
Problema | Lazy | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Romanian Master in Mathematics and Sciences 2011, Ziua 1 | Marime | 0.26 kb |
#include<cstdio>
const int N=1000;
int n,m;
void citire()
{
freopen("lazy.in","r",stdin);
freopen("lazy.out","w",stdout);
scanf("%d%d",&n,&m);
printf("1\n");
for (int i=3;i<=m;++i)
printf("%d\n",i);
}
int main()
{
citire();
return 0;
}