Write a statement to add the values of x and y together, storing the result in sum.
LANGUAGE: Visual Basic
CHALLENGE:
Write a statement to add the values of x and y together, storing the result in sum. (The variables have already been declared and x and y have already been initialized.)
SOLUTION:
sum = x + y