// editor2
import java.util.*;
class Employee{
    String e ;
    int id;
    int a;
    public employee(String e,int id,int a){
        this.e=e;
        this.id=id;
        this.a=a;
    }
    public String status(){
        if(a<0){
           return"Invalid input";
        }
        else if(a>=90){
           return "Outstanding Employee";
        }
        else if(a>=75&&a<90){
           return "Satisfactory";
        }
        else if(a>=50&&a<75){
           return "Needs Improvement";
        }
        else{
            return "On Probation";
        }
    }
}
class Main{
    public static void main(String[]args){
        Scanner sc = new Scanner(System.in);
        String e = sc.nextLine();
        int id = sc.nextInt();
        int a = sc.nextInt();
        
            Employee emp = new Employee( e, id, a);
            System.out.println("Employee Name: "+emp.e);
            System.out.println("Employee ID: "+emp.id);
            System.out.println("Attendance: "+emp.a+"%");
            System.out.println("Status: "+emp.status());
            }
        }