public class Main {
public static void main(String[] args) {
int myNum = 15;
myNum = 20; // myNum is now 20
System.out.println(myNum);
}