#ifndef ABS_H
#define ABS_H
#ifndef ABS
#define ABS(x) (((x)>=0)?(x):(-(x)))
#endif
//extern int abs(int input);