#include<stdio.h>
int main ( )
{
int x = 0, y = 5;
if (x < y)
{
x=x+y;
return x;
}
else
printf("%d ",x);
printf("%d",y);
}
