/*
 Íð¿ô¤òºî¤ë
*/

#include <stdio.h>
#include <stdlib.h>

main() 
{
  int seed, i;
  long int r;

  printf("please set the seed :");
  scanf("%d",&seed);
  srand(seed);

  for(i=0;i<10;i++) {
    r=rand();
    printf("%ld\n", r);
  };

  exit(0);

}
