#include<stdio.h> main() { double m; while(scanf("%lf",&m)!=EOF) { m=(m>0)?m:(-m); printf("%.2lf\n",m); } return 0; }