#include using namespace std; int main() { int x, y; cout << "Entrez deux entiers :\n"; cin >> x >> y; if (x > y) { int temp = x; //temp et declaree a l'interieur du bloc x = y; y = temp; } // x et y sont permutes cout << x << " <= " << y << endl; return 0; }