#include <stdio.h>int f(int n){ if(n==1) return 1; printf("%d\n",n); return f(n-1)+n+1;}int main(){ int s; scanf("%d",&s); printf("%d",f(s));}