#include <stdio.h>

int main(void){
  int d;
  
  scanf("%d", &d);
  if(d <= 0) printf("%d\n", -d);
  else printf("%d\n",d);
  return 0;
}
