#32030: 正與負


oh_my_god (often)


#include <stdio.h>
#include <stdlib.h>
int main()
{
    int x;
    scanf("%d",&x);
    if(x>=0)
    {
        printf("%d",x);
    }
    else
    {
        printf("%d",(-1)*x);
    }
}