#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int n,c,br;
pocetak:
cout<<„Unesi neki broj (n>10): „;
cin>>n;
if (n<=10)
{cout<<„Broj je manji ili jednak 10! Ponovi unos! „<<endl;
goto pocetak;}
br=0;
while (n>0)
{c=n%10;
n=n/10;
br=br*10+c;}
cout<<„Trazeni broj je: „<<br<<endl;
system(„PAUSE“);
return EXIT_SUCCESS;
}