public class Main { public static void main(String[] args) { int level = 1; // store 1 in level level = 5; // replace it with 5 level = level + 2; // read level (5), add 2, store back 7 System.out.println(level); // 7 } }
Click Run to execute this code.