// Arup Guha
// 2/25/2010
// Program that prints out 5 random numbers in the range
// [1, 100].

#include <stdio.h>
#include <time.h>

int main() {

    srand(time(0));
    
    printf("%d\n", rand()%100 + 1);
    printf("%d\n", rand()%100 + 1);
    printf("%d\n", rand()%100 + 1);
    printf("%d\n", rand()%100 + 1);
    printf("%d\n", rand()%100 + 1);

    return 0;
}
