问题1269--Fibonacci Again

1269: Fibonacci Again

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2).

输入

Input consists of a sequence of lines, each containing an integer n. (n < 1,000,000).

输出

Print the word "yes" if 3 divide evenly into F(n). Print the word "no" if not.

样例输入 Copy

0
1
2
3
4
5

样例输出 Copy

no
no
yes
no
no
no

来源/分类