#include <iostream>

int main() {
    int score = 0;
    std::cin >> score;

    // TODO 1: Replace false with the test condition.
    if (false) {
        std::cout << "Pass" << '\n';
    } else {
        std::cout << "Fail" << '\n';
    }
    return 0;
}
