public class UseVariableValueAgain{
    public static void main(String args[]){
        int x=6;
        int y=7;
        int LastValue=0;// for first time
        LastValue=x+y+LastValue;
        System.out.println("result"+LastValue);
        Scanner scan = new Scanner(System.in);
        int x1=scan.nextInt();
        int y1=scan.nextInt();
        int LastValue1=0;
        LastValue1=x1+y1+LastValue1;//for first time 
        System.out.println("REsult using Scanner="+LastValue1);
    }
}
Ressult=13
5
6
Result using Scanner=11
when i execute this program i got 13 output by default and by using scanner i enter 5,6 and output is 11 , Now I want to use (13,11)values for next time when i re-execute the program. but it give same result
 
     
    