rem Programming Porblem rem if X grams of solvent kill a Y kg mouse, how many are needed for a rem G kg person to die? input "Weight of mouse in kg: " mouseweight input "Amount of solvent to kill mouse (g): " solvent input "Weight of person in kg: " personweight input "Amount of sweetener per can (g): " percan killperson = solvent * personweight / mouseweight print "Amount to kill person: ", killperson print "Number of cans: ", killperson /percan