I need to write a C program
(a) declare two integer variables , and y
(b) lex x = 6
(c) find y value use the following algebraic fromula: y=2*x*x*x+5
and I only have until these part
#include <stdio.h>
int main ()
{
int x, y;
x = 6;
y = 2*x*x*x+5;
I don't know what to put next, [lease help me with my homework
thanks