using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forum
{
class Program
{
static void Main(string[] args)
{
int x;
int y;
Console.WriteLine("+ olan sayıyı giriniz");
x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("- olan sayıyı giriniz");
y=Convert.ToInt32(Console.ReadLine());
int z;
if (x < y)
{
z = x - y;
}
else
{
z = x - y * 2;
}
if (z == 0)
{
Console.WriteLine("Nötr");
Console.ReadLine();
}
else
{
Console.WriteLine("Sonuç {0}",z);
Console.ReadLine();
}
}
}
}