A currency conversion program converts British Pounds (GBP) to Euros (EUR).
Read the following Python code:
# Convert GBP to EUR
gbp_amount = float(input("Enter amount in GBP: "))
exchange_rate = 1.16 # Current daily exchange rate
eur_amount = gbp_amount * exchange_rate # Calculate output value
print("Amount in EUR:", eur_amount)
Give the contents of one comment from the code.