fork(2) download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main()
  5. {
  6. double x,y; //описание переменных для хранения входных данных
  7. scanf("%lf%lf",&x,&y); //ввод координат точки
  8. if((y>=1) || (x>=-1 && x<=1 && y>=fabs(x))) printf("Belongs"); //проверка
  9. else printf("Doesn't belong");
  10. return 0;
  11. }
Success #stdin #stdout 0s 3348KB
stdin
-0.8 0.9


stdout
Belongs