public class AufgabeDb { public static void main(String args[]) { byte a = 23; byte b = 42; int c = a + b; System.out.println(c); } }