Задание №1
Чему равно answer(12)?
int answer(int a) { int i; int count=0; for (i=0;i<a;i++) { if (i%5==0) count++; } return(count); }