Skip to content

Instantly share code, notes, and snippets.

@rogerioagjr
Created May 18, 2015 03:02
Show Gist options
  • Save rogerioagjr/95ff9a075358ef1b1c0a to your computer and use it in GitHub Desktop.
Save rogerioagjr/95ff9a075358ef1b1c0a to your computer and use it in GitHub Desktop.
Tira-Teima Rafael Rodrigues
#include <stdio.h>
//Rafael Rodrigues
//NOIC - Informatica - Iniciante - Tira-Teima
int main(){
int X, Y;
scanf("%d%d", &X, &Y);
if(X<0 || Y<0 || X>432 || Y>468){
printf("fora\n");
}
else {
printf("dentro\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment