3208: Catch the idol

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:19 解决:2

题目描述

SZY is the star of the BUCT-ACM/ICPC Association, and everyone is his fan. Because of this, everyone wants to get his signature. To kit fit, SZY stars running everyday. Someday, you find SZY is running along the circular race track on the playground fortunately. At the instant seeing him, you take out paper and pen immediately and want to get his signature. Suppose you stand in the center of the circular race track, you rush to him without hesitation. However, you cannot run too far since you are out of exercise.

Now, here is the problem. Given the maximum distance you can run, you are asked to check whether you can catch up with SZY. Assume that the values of SZY's and yours velocity are both constants. At the same time, SZY, you, and the center of the circular race track ALWAYS form a straight line during this process. Note that the you and SZY can be considered as two points.


输入

Input contains multiple cases.Each case contain four integers V1, V2, R, and D (0<V1, V2, R, D<=109, V1<=V2). V1 is the velocity of SZY. V2 is the velocity of you. R is the radius of the race track. D is the maximum distance you can run. 

输出

For each case, output "Just do it." in a line if you can catch up with SZY; otherwise output "Too young, too simple." in a line. 

样例输入 复制

1 1 1 1
10000 40000 3000 4000

样例输出 复制

Too young, too simple.
Just do it.