#include <iostream>
using namespace std;

int main() {
	// your code goes here
	float broj;
	cout << "Внеси цел број "<<endl;
	cin >> broj;
	while((broj - (int)broj) == 0)
	{
		cout << "Внесовте: " << broj << endl;
		cout << "Внеси цел број "<<endl;
		cin >> broj;
	}
	cout << "Бројот "<< broj << " не е цел број";
	return 0;
}