Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

CP023 - Утгыг ол

x,y тоо өгөв. x2+y2<1 бол x, x2+y2>3 бол x+y, үгүй бол y хэвлэ.

Input

x,y тоо өгөнө.

Output

Тохирох хариуг хэвлэ.

Example

Input:
1 1

Output:
1

Нэмсэн:munkhbat
Огноо:2015-02-16
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:Бүгд дараах хэлүүдээс бусад: ASM64 NCSHARP JS-MONKEY JULIA PYPY3

hide comments
2024-11-29 01:49:21
#include <bits/stdc++.h>
using namespace std;

int main() {
double x, y;
cin >> x >> y;
if (x * x + y * y < 1) {
cout << x << endl;
} else if (x * x + y * y > 3) {
cout << x + y << endl;
} else {
cout << y << endl;
}

return 0;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.