#include<stdio.h>

/**
 * Terry Harvey CIS 105 Section 010 TA Tina Weymouth
 *  Demonstration program
 **/

int main(){
    int count;

    count = 5;

    while(count <= 50){
	printf("%d   ", count);
	count = count + 1;
    }
    return 0;

}


