Qual o resultado do programa em Java a seguir:
public class Prova {
static int v1;
int v2;
static { v1=1 ;}
{ v2 = 2; }
void troca() {
v1=v2 ;
}
public static void main(String[ ] args) {
Prova a=new Prova( );
Prova b=new Prova( );
a.v2=5;
a.troca( );
System.out.print(a.v1);
System.out.print(a.v2);
System.out.print(b.v1);
System.out.print(b.v2);
}
}