include<stdio.h>int main(){ int x, y ; printf("Please input the number x: "); scanf("%d" , &x ); y = x*x + 2*x -10 ; printf("The y = %d\n" , y ); return 0;}