#include
#include
void main()
{
clrscr();
void amg(int )
int a;
couta;
amg(a);
getch();
}
void amg(int b)
{
int c,n,x=0;
n=b;
while(b>0)
{
c=b%10;
x=x+(c*c*c);
b=b/10;
}
if(x==b)
cout
#include
void main()
{
clrscr();
void amg(int )
int a;
couta;
amg(a);
getch();
}
void amg(int b)
{
int c,n,x=0;
n=b;
while(b>0)
{
c=b%10;
x=x+(c*c*c);
b=b/10;
}
if(x==b)
cout
Can you write a program to check a given number is palandrome or not