#include <stdio.h>

int main(void) {
    int i;
    for (i=7; i<=150; i+=7) {
        printf("%d ", i);     
    }
    return 0;
}
