Почему метод print выдает результат 183?

public class LogicOperations {
    
    public static void main (String[] args) {
        
        String greeting = "Hello";
        
        char first = greeting.charAt(0); //first symbol - 'H'
        char last = greeting.charAt(4); //last symbol - 'o'
        
        System.out.println(first + last); // 183?
        System.out.print(first); // 'H'
    }
}

Ответы (0 шт):