Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

import java.io.

*;
class whatta_hottie_hottie
{public static void main (String args[]) throws
IOException
{int p;
int a = 0;
InputStreamReader read = new
InputStreamReader(System.in);
BufferedReader in = new BufferedReader(read);
System.out.println ("enter a no.");
p= Integer.parseInt (in.readLine ());
while (p > 0)
{int r = p / 100;
int s= r*r*r;
a = a + s;
}
if (p == a)

System.out.println ("Armstrong");
}
}

You might also like