import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello")
my_name = "Benen Casanova"
my_age = "14"
led_light = "You Blinked"
print(my_name,my_age)
print(led_light)
import math
x = math.sqrt(25)
print(x+3)
import machine
led_pin = machine.Pin(25, machine.Pin.OUT)
import time
while True:
led_pin.toggle()
time.sleep(1)
while True:
print("It's Still Going")
time.sleep(10)