/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
using namespace std;
int main() {
int n;
cout << "Valeur absolue" << endl;
cout << "Entrez un nombre : ";
cin >> n;
if(n < 0 ) {
n = -n;
}
cout << "La valeur absolue est " << n << endl;
return 0;
}