Advertisement
2607

d3q7

Sep 8th, 2021
1,581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {  
  5.     double x, y;
  6.     scanf("%lf %lf", &x, &y);
  7.     if (x*x+y*y<25)
  8.     printf("GOTCHA");
  9.     else
  10.     printf("MISS");
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement