/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
static void Main() {
double a = 1.0;
a += ++a/a * (a++) + --a;
Console.WriteLine(a);
}
}