//4
using System;
Console.Write("Enter first num: ");
double x = double.Parse(Console.ReadLine());
double y = (x - 1);
double inc = x + y;
Console.Write(inc);