Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- double x, y;
- scanf("%lf %lf", &x, &y);
- if (x*x+y*y<25)
- printf("GOTCHA");
- else
- printf("MISS");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement