1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 double n; 6 while(~scanf("%lf",&n)) 7 printf("%.2lf\n",fabs(n)); 8 return 0; 9 }