1. If KMT = 100, LITRES = 5.0, PCOST = 28.0 and OPCOST = 70.0 what will be the result of the following FORTRAN 77 program?
INTEGER KMT
REAL LITRES, PCOST, OPCOST, PKCOST READ , KMT,
LITRES, PCOST, OPCOST, PKCOST
KMPL = KMT/LITRES PKCOST = (PCOST LITRES + OPCOST)/ KMT