#include <stdlib.h> #include <stdio.h> int main(void) { char num[80]; gets(num); printf("%d", abs( atoi( num ) ) ); return 0; }