Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7006 - Функц 2

y=4x2-3x+5

Input

x - нь Int төрлийн бүхэл тоо.

Output

y-гийн утга.

Example

Input:
-2

Output:
27

Нэмсэн:Bataa
Огноо:2011-01-17
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2021-12-16 10:44:54
#Python
x = int(input())
print(4*(x**2)-3*x+5)
2021-12-10 05:38:57
funkts 2 tomyo bnu psda
2020-01-23 05:08:26
#include <cstdio>
int main(){
int x;
scanf("%d",&x);
int y;
y=4*x*x-3*x+5;
printf("%d",y);
}
2019-12-29 12:20:57
#include<bits/stdc++.h>

using namespace std;

int main(){
long long x,y;

cin>>x;

y=4*(x*x)-3*x+5;

cout<<y<<endl;

return 0;
}
2019-11-29 08:15:47
#include <iostream>
using namespace std;

int main() {
int x,y;
cin>>x;
y=4*x*x-3*x+5;;
cout<<y;
}
2019-11-12 05:11:05
aa chihshig
2019-10-26 06:21:55
#include <cstdio>
int main(){
int x;
scanf("%d",&x);
int y;
y=4*x*x-3*x+5;
printf("%d",y);
}
SUPER
2019-10-11 08:44:50
hehehe
2019-10-01 06:30:41
lol

2019-09-09 06:42:05
ahahahahaha

© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.