The formula is given as:
E = mc2
where, E ⇒ energy measured in Joule,
m ⇒ mass in Kilogram,
c ⇒ speed of light in m/s.
Program:
#Program to calculate the equivalent energy of an object
#asking for the mass in grams
mass = float(input("Enter the mass of object(in grams): "))
#Speed of light is known and given in the question
c = 3 * 10 ** 8
#calculating the energy, mass is divided by 1000 to convert it into kilogram
Energy = (mass/1000) * c ** 2
#printing the output
print("The energy of an object with mass",mass," grams is",Energy,"Joule.")
OUTPUT:
Enter the mass of object(in grams): 25
The energy of an object with mass 25.0 grams is 2250000000000000.0 Joule.