public class Dzialania2 { public static void main(String[] args) { int a, b; a = 5; b = 2; b += 7; System.out.println("Wartość z b: " + b); } }