#include <stdio.h>
  #include <stdlib.h> 
  #include <time.h>
  
  int main (void ) {
    
    srand (time (NULL) ) ;
    
    int dice =100;
    int roll =0; 
    for (int i =1; i<=dice; i++)
    
    {
      roll = rand  ();
    
      
      printf("Dice %d: %d\n: %d\n",i, roll);
      
      
    }
    
    return 0;
  }