""" administrator gets a quarter of one percent of the inheritance and whatever is left over parents get twice as much as each child, children get 100 times the amount of each relative """ import math total_inheritance = 1587654 administrator_percent = 0.0025 num_children = 3 num_parents = 2 num_relatives = 10 #Complete the code #Complete the code