In the code given below, create a variable named fullName
and assign it a value Sam Smith
.
Create two other variables named timeInMinutes
and runs
with the initial value of 0
.
Then change the value of timeInMinutes
to 50 and runs
to 100
.
At the end, print the values of fullName
, timeInMinutes
and runs
in that order.