import time
# Record the start time
start_time = time.time()
# Declare the variable
a = 101 + 1
# Record the end time
end_time = time.time()
# Calculate the elapsed time
elapsed_time = end_time - start_time
# Print the variable and the elapsed time
print(f"Variable a: {a}")
print(f"Time taken to declare the variable: {elapsed_time} seconds")
# Time taken to declare the variable: 9.5367431640625e-07 seconds
# or 0.00000095367431640625 seconds