Knowledgable ChuanPu
题号:NC207905
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

As we know, ChuanPu is a 'knowledgable' man. He thinks that nobody konws more than him. One day, a little boy ask ChuanPu to check his homework. If the answer is right, ChuanPu would say "Fake!". If the answer is wrong, ChuanPu would say "You do know more than me.".

Because ChuanPu is a spy, he can't say too much to others. So ChuanPu want you to write a program to help him.

输入描述:

The input format is as follows:
AxB=C.
Where A, B, C are positive integers and 
x is one operators of +,-,*.

输出描述:

If the answer is right, output"Fake!", else ouput "You do know more than me."
示例1

输入

复制
1+1=2

输出

复制
Fake!
示例2

输入

复制
10-2=3

输出

复制
You do know more than me.