422 - Pass or Fail
Pass or Fail
Time Limit: 1 sec
The Problem
Make a simple program that reads one integer number named M which is the mark of Mathematics of a student. Find the student is Pass or Fail in the subject.
The minimum pass mark is 33 out of 100.
The Input
Input file consist of several test cases. Each test case contains a line and each line will contains one integer M(0<=M<=100). Input is terminated by EOF.
The Output
For each test case you should output a line. Print "Pass" if the student pass in the subject or print "Fail" if the student fail in the subject.
Sample Input
5
80
32
Sample Output
Fail
Pass
Fail
Problem Setter: Shahin ShamS