Answer: Alt Text.
Explanation:
Alt Text or alt="Text" Allows for the website to load just the description of the image, rather than the image itself. Gets the Same message across without insane load times of large images.
CLS
INPUT "Enter the first number"; a
INPUT "Enter the second number"; b
m = a
n = b
WHILE a <> 0
r = b MOD a
b = a
a = r
WEND
l = (m * n) / b
PRINT "HCF is "; b
PRINT "LCM is "; l