#-------------------------------------------------------------
# LAB Name: Raspberry Pi Pico - MicroPython (Project Template)
# Author: Khaled Magdy
# For More Info Visit: www.DeepBlueMbedded.com
#-------------------------------------------------------------
from machine import Pin
from time import sleep
BUILTIN_LED = Pin(25, Pin.OUT)
while True:
grade = 76
height = 175.5
weight = 75.5
print("G="+str(grade))
print("H="+str(height))
print("W="+str(weight))