public class P17 { public static void main(String[] args) { int a = 5; int b = 6; int c = a + b; System.out.print(c); } }