int main() { double x; scanf("%lf", &x); printf("%lf\n", (x>0)?x:-x); return 0; } 1. 2. 3. 4. 5. 6. 7. 8.