###################### ### Divisible by 3 ### ###################### """ Write a function called rand_divis_3 that generates a random integer between 0 and 100, inclusive; prints the random number; and returns whether the random number is divisible by 3. returns: True if the random number is divisible by 3; else returns False """ # YOUR CODE HERE #################### ### Rolling dice ### #################### """ Write a function called roll_dice that takes two parameters, describing the number of sides (num_sides) of a die and the number of dice to roll (num_dice), and simulates rolling each die once. The function prints the value of each roll, then returns the sum of the rolls. You may assume num_sides and num_dice are integers. @param num_sides - an integer representing the number of sides per die @param num_dice - an integer representing the number of dice to roll side effects: prints the value of each roll returns: the sum of the rolls """