/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static class Point {
		private double x, y;
		public Point(double x, double y){
			this.x = x;
			this.y = y;
		}
		public double getX(){
			return this.x;
		}
		public double getY(){
			return this.y;
		}
		private static double dotLine(Point a, Point b, Point d) {
			return (d.getX() - a.getX()) * (b.getY() - a.getY()) - (d.getY() - a.getY()) * (b.getX() - a.getX());
		}
		public static boolean dotDot(Point a, Point b, Point c, Point d) {
			return dotLine(a, b, c) * dotLine(a, b, d) >= 0;
		}
	}
	
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner in = new Scanner(System.in);
		Point a = new Point(-2, 0);
		Point b = new Point(0, 1);
		Point c = new Point(0, -1);
		Point d = new Point(in.nextDouble(), in.nextDouble());
		if(d.getX()<0){
			if(Point.dotDot(a,b,c,d) && Point.dotDot(b,c,a,d) && Point.dotDot(c,a,b,d)){
				System.out.println("Точка D принадлежит заштрихованной части плоскости.");
			} else {
				System.out.println("Точка D не принадлежит заштрихованной части плоскости.");
			}
		} else {
			if (Math.sqrt(Math.pow(d.getX(), 2) + Math.pow(d.getY(), 2))<=1) {
				System.out.println("Точка D принадлежит заштрихованной части плоскости.");
			}
			else {
				System.out.println("Точка D не принадлежит заштрихованной части плоскости.");
			}
		}
	}
}