Trying to write a simple program in Java that will add two numbers that the user inputs. I can get the input but it won't add the numbers together, was hoping someone here could take a look for me please

below is the code I wrote.
import java.util.Scanner;
public class Ball
{
public static void main(String[] args) {
int numone = 0;
int numtwo = 0;
int total = 0;
Scanner scan= new Scanner(System.in);
System.out.println("Please enter a number");
int userInput = scan.nextInt();
System.out.println("Please enter a Second number");
int userInput2 = scan.nextInt();
total= (numone + numtwo);
}
}