#include<stdio.h>
int main()
{
int a,b;
double x;
scanf("%d %d",&a,&b);
x=(a-b)*100.0/b;
if((a-b)*1.0/b<0.1)
printf("OK");
else
{
if((a-b)*1.0/b>=0.1 &&(a-b)*1.0/b<0.5)
printf("Exceed %.0lf%%. Ticket 200",x);
else
printf("Exceed %.0lf%%. License Revoked",x);
}
return 0;
}