When I try to run this code
print("What is the mass?")
m = input()
c = 3.00 * 10 * 10 * 10 * 10 * 10 * 10 * 10 * 10
e = m * c ** 2
print(e)
But it gives me this error
Traceback (most recent call last):
File "/Users/Abood/Desktop/E = MC2.py", line 4, in <module>
e = m * c ** 2
TypeError: can't multiply sequence by non-int of type 'float'
I also tried other solutions but it still did not work!