using System;
public class Program
{
public static double x, y;
public static void Main()
for (int w = 0; w <= 10; w++)
x= w;
y = (2*x) - 3;
Console.WriteLine("Y(" + x + ")= " + y);
}