#include <stdio.h> int main() { int n, m; scanf("%d", &n); m = n; while(n<=m+10) { printf("%2d ",n); n++; } return 0; }