using System;
namespace Polynomial
{
///
/// Summary description for Class1.
///
class Class1
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main(string[] args)
{
int x, y;
//Input x
Console.WriteLine("Enter the value of x");
x = int.Parse(Console.ReadLine());
//Compute polynomial
y = 4*x*x + 3*x - 5;
//Output value of the polynomial
Console.WriteLine("The polynomial value is {0}", y);
}
}
}