#include<stdio.h>
int main()
{
 int n,i;
 scanf("%d",&n);
 if(n<=2){printf("-1");return 0;}
 for(;n>0;n--)printf("%d ",n);return 0;
}

 


http://codeforces.com/contest/246/problem/A

posted on 2013-01-18 23:07  海暗  阅读(144)  评论(0编辑  收藏  举报