/*
#include <stdio.h>
int main()
{
int a,b,c;
scanf("%d %d %d", &a, &b, &c);
if (a>=b && a>=c)
{
if (b>c)
printf("%d %d %d", c, b, a);
else
printf("%d %d %d", b, c, a);
}
else if (b>=a && b>=c)
{
if (a>c)
printf("%d %d %d", c, a, b);
else
printf("%d %d %d", a, c, b);
}
else
{
if (a>b)
printf("%d %d %d", b, a, c);
else
printf("%d %d %d", a, b, c);
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int t,n,d,c=2;
scanf("%d %d", &t, &n);
d = (89-t)/5+1;
if(n+d>n)
{
printf("%d", n+d);
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
double a,b,max=0;
scanf("%lf %lf", &a, &b);
if()
return
}
*/