#include <stdio.h>

int main(){
  int x,i ;
  scanf("%d",&x);
  for (i=1;i<11;i=i+1)
    printf("%d\n",x*i);
  return 0; 
}