You seem to be misunderstanding the things.
Functions have paramaters where you put something in. They can return values too.
They are in the form:
returnvalue function(type parameter)
{
dosomething with parameter;
return something;
}
You are inputting uninitialized values. And after that you don't do anything with it.