#include <stdlib.h>

int abs(int val) {
  return(val>0?val:-val);
  }
