hola quisiera saber por que este while no sirve?
public static void main(String[] args)throws IOException {
Scanner entra= new Scanner (System.in);
ArrayList numero= new ArrayList();
ArrayList numero2= new ArrayList();
boolean in=true;
while (in=true){
int x;
int y;
x=entra.nextInt();
y=entra.nextInt();
numero.add(x);
numero2.add(y);
if ((x==0)&& (y==0))
in=false;
}