Write a program that rolls a 6-sided die 100 times, and prints out all of the rolls.

When you output to the console, make sure you have a new line between rolls.

import random

for i in range(100):
roll = random.randint(1, 6)
print(roll)