--lua c=0 for i=1, 100 do if i%3==0 then c=c+1 end end print('Кількість чисел, які діляться на 3 без остачі: '..c)