Function Parameters
Parameters passed to a function are passed by value. Values passed to a function are copied into the local parameter variables. The original variable that is passed to a function cannot be modified by the function since only a copy of its value was passed.
The value of a is copied into x.
The value of b is copied into y.
The function does not change the value of a or b.