#include <cstdio> #include <cstdlib> int main(){ double x; while(scanf("%lf",&x)!=EOF){ if(x<0) x=-x; printf("%lf\n",x); } return 0; }