#include <iostream>
int main(){
int div, notdiv = 0; int n;
do {
std::cout << "n = "; std::cin >> n;
if(n % 13 == 0) div += 1; else notdiv += 1;
} while(n != 0);
std::cout << "Divizibile : " << div << std::endl;
std::cout << "!Divizibile : " << notdiv << std::endl;
// system("pause");
return 0;
}