// The date type provides the context on how to interpret a number inside the computer
public class datatype {
    public static void main(String[] args) {
        int x = 65;
        System.out.println(x); // Print 65 as an integer

        char y = 65;
        System.out.println(y); // Print 65 as Unicode
    }
}