View the video at https://apclassroom.collegeboard.org/d/i8xt887g2f?sui=8,1
int x = 23; //Line 1
int y = 17; //Line 2
x*=4; //Line 3
y++; //Line 4
x /= 3; //Line 5
y -= 9; //Line 6
x %= y; //Line 7
System.out.println(x); //Line 8
Describe the behavior for Line 1.