Using System;
namespace ConsoleApp {
internal class Program {
private static void Main() {
Console.WriteLine("Введите x");
var x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите y");
var y = Convert.ToInt32(Console.ReadLine());
if (Math.Abs(x) <= y && x * x + y * y <= 15 * 15) {<br> if (Math.Abs(x) == y || x * x + y * y == 15 * 15) {
Console.WriteLine("На границе");
}
else {
Console.WriteLine("Да");
}
}
else {
Console.WriteLine("Нет");
}
Console.ReadKey();
}
}
}