1937 打鱼OR晒网


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

中国有句俗语叫‘三天打鱼两天晒网’。某人从1990年1月1日起开始“三天打鱼两天晒网”,问这个人在以后的某一天是“打鱼”还是“晒网”。

Input

若干组数据,每组数据为三个整数,表示一个年、月、日的日期。其中年份介于1990和3000之间。

Output

若为打鱼日,输出一行“Fishing”,若为晒网日,输出一行“Drying net”。

Sample

Input

1990 1 1
2010 1 31
2010 10 25
2012 10 25

Output

Fishing
Fishing
Fishing
Drying net

Source: jww


Comments

There are no comments at the moment.