#!/usr/bin/env python3 score = input("点数を入力して: ") score = int(score) if ((score >= 0) and (score <= 100)) : print("受理") else: print("不受理")