#include <iostream>
#include <cmath>
int main() {
int x = -10;
int jueduizhi = abs(x);
std::cout << "The absolute value of " << x << " is " << jueduizhi << std::endl;
return 0;
}
/**************************************************************
Problem: 1348
User: fuhoubin
Language: C++
Result: Wrong Answer
****************************************************************/