Problem B
Happy Happy Prime Prime
RILEY VASHTEE: [reading from display] Find the next number in the sequence:
THE DOCTOR: 379.
MARTHA JONES: What?
THE DOCTOR: It’s a sequence of happy primes – 379.
MARTHA JONES: Happy what?
THE DOCTOR: Any number that reduces
to one when you take the sum of the square of its digits and
continue iterating it until it yields
THE DOCTOR: I dunno, talk about dumbing down. Don’t they teach recreational mathematics anymore?
Excerpted from “Dr. Who,” Episode 42 (2007).
The number 7 is certainly prime. But is it happy?
It is happy :-) As it happens, 7 is the smallest happy prime. Please note that for the purposes of this problem, 1 is not prime.
For this problem you will write a program to determine if a number is a happy prime.
Input
The first line of input contains a single integer
Each data set consists of a single line of input. It
contains the data set number,
Output
For each data set there is a single line of output. The
single output line consists of the data set number,
Sample Input 1 | Sample Output 1 |
---|---|
4 1 1 2 7 3 383 4 1000 |
1 1 NO 2 7 YES 3 383 YES 4 1000 NO |