#include int abs(int x){ if(x<0) return -x; return x; } unsigned int N; int main(){ scanf("%d", &N); unsigned int x[N]; for(int i=0;i