#include <stdio.h>

int main(){
    int i;
    for(i = 3 ; i <= 15 ; ++i){
        printf("\n%d" , i);
    }

    
    
    return 0;
}
