#include<iostream>
#include<cmath>
using namespace std;
int main(){
//fabs() is the short form of float absolute.
//By this function you can change a negative floating point number
//to positive.
float num = -10.6;
cout<<fabs(num)<<endl;
return 0;
}