#include <stdio.h>
#include <stdlib.h>
void badPermut(int a, int b) {
	a += b;
	b = a - b;
	a -= b;
	printf("Dans badPermut apres permutation a = %i b = %i\n", a, b);
}
int main() {
	int x = 3, y = 5;
	printf("Avant badPermut x = %i y = %i\n", x, y);
	badPermut(x, y);
	printf("Apres badPermut x = %i y = %i\n", x, y);
	system("pause");
	return 0;
}