Algorithm


A. Find Color
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Not so long ago as a result of combat operations the main Berland place of interest — the magic clock — was damaged. The cannon's balls made several holes in the clock, that's why the residents are concerned about the repair. The magic clock can be represented as an infinite Cartesian plane, where the origin corresponds to the clock center. The clock was painted two colors as is shown in the picture:

The picture shows only the central part of the clock. This coloring naturally extends to infinity.

The balls can be taken to be points on the plane. Your task is to find the color of the area, damaged by the given ball.

All the points located on the border of one of the areas have to be considered painted black.

Input

The first and single line contains two integers x and y — the coordinates of the hole made in the clock by the ball. Each of the numbers x and y has an absolute value that does not exceed 1000.

Output

Find the required color.

All the points between which and the origin of coordinates the distance is integral-value are painted black.

Examples
input
Copy
-2 1
output
Copy
white
input
Copy
2 1
output
Copy
black
input
Copy
4 3
output
Copy
black

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <cstdio>
#include <cmath>

int main(){
    
    long x, y; scanf("%ld %ld\n", &x, &y);
    double actual = x * x + y * y;
    long total = sqrt(actual);
    if(total * total == actual){puts("black");}
    else{
        if(x * y < 0){++total;}
        puts(total % 2 ? "white" : "black");
    }

    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
-2 1

Output

x
+
cmd
white
Advertisements

Demonstration


Codeforces Solution-A. Find Color-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+