package basic; public class VarTest { public static void main(String[] args){ int num = 100; num = 200; System.out.println(num); } }