HDU2003

#include <cstdio>
#include <cstdlib>

int main(){
    double x;
    while(scanf("%lf",&x)!=EOF){
        if(x<0)
            x=-x;
        printf("%lf\n",x);
    }
    return 0;
}
posted @ 2015-12-03 15:39  sean10  阅读(132)  评论(0)    收藏  举报