import static utils.Utils.*; public class InvVars { public static final void main(String[] args) { afficher("Inversion"); int a= 5; int b= 1; afficher("a = ",a); afficher("b = ",b); int c=a; a=b; b=c; afficher("a = ",a); afficher("b = ",b); } }