code is following:
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
#include <stdlib.h>
void main(void)
{
int a, b;
printf("enter a");
scanf("%d",&a);
printf("enter b");
scanf("%d",&b);
if(a==1 && b<=8)
{
printf("you");
}
else if(a==2 && b<=10)
{
printf("you");
}
else
printf("me");
}
getch();
}
i edit again my question i found solution check please if there any syntax error.