For each line of input data, your program should determine the percentage of the recommended daily requirement being provided for that vitamin/mineral. If it is at least 1% , your program should print a line of the form
V A U P %
where V , A , and U are the quantities from the input, and P is the percentage of the minimum daily requirement represented by the amount A .
V should be printed left-justified on the line. A should be printed with 1 digit precision, and P with zero digits precision. V , A , U , and P should be separated by one space each.
After the last such line, your program should print a line stating
Provides no significant amount of:
followed by a list of the names of all vitamins/minerals which are provided as less than 1% of the minimum daily requirement. These should be printed one name per line, in the order they occurred within the input.