using System;
public class Program
{
public static void Main()
double x1,x2,y,z;
x1 = 15.7;
y = 4;
z = 19;
x2 = x1+y;
Console.WriteLine(x2);
}