# Daniel Foster
# 06/04/2024
# Random Number Intro

import random

# Heads or tails coin toss
print("Random coin toss:")
flip = random.randint(1,2)
print(flip)


# Roll a D6 dice.
print("Roll a six-sided dice:")
roll = random.randint(1,6)
print(roll)


# New, weird dice.
print("What is this dice?")
newRoll = random.randint(1,1000000)
print(newRoll)



x = 5 + 6
