#include <stdio.h>

int main()
{
    int X;
    printf("Enter X:"); 
    scanf("%d,&X");
    
    if(X < 0)
    printf("|X| = %d \n",(-1)*X);
    
}