You are on page 1of 1

using System;

public class ValorAbsoluto


{
public static void Main(string[] args)
{
int x = Convert.ToInt32(Console.ReadLine());

int abs;
if (x < 0)
{
abs = -x;
}
else
{
abs = x;
}

Console.WriteLine("El valor absoluto es {0}", abs);


}
}

You might also like