nutzhutzskutz3612 nutzhutzskutz3612 25-01-2024 Computers and Technology contestada What would happen if you tried to run this program?public class myClass { public static void main(String[] args) { Rectangle a = new Rectangle(1, 1, 1, 1); Rectangle b = a; b.setWidth(100); System.out.println(a.getWidth()); } }