#include <stdio.h>
main()
{
int x = 15;
while (x>10&&x<50)
{
x++;
if (x/3)

{
x++;break;
}
else continue;
}
printf("%d\n",x);

}