#include <stdio.h>
#include <conio.h>
int main(void)
{
int eyes;
int toes;
printf("Enter number of eyes and toes you have");
scanf("%d%d", &eyes, &toes);
if(eyes == 2 || toes == 10){
printf("You are a normal person");
}else{
printf("You are Weird!");
}
getch();
}