I just started AI and I do not get too much of it ... The idea was to use while
to show us all even numbers up to 100 but it is always giving error and I have not been able to fix this yet.
while (i <= 100) {
i += 1;
if (i % 2 == 0)
prinft('\n%d', i)
}