#include <stdio.h>
#include <math.h>
#include <string.h>
int main() {
int a = 0, total, b = 0, i, j;
char x[10000]; //注意這裡陣列絕對要大 ,否則會出現abort問題!!
scanf("%s", x);
for (i = 0; i < strlen(x); i++) {
if (i % 2 == 0) { //偶數
a += x[i] - '0'; //-'0'的意思是轉換成數字
} else if (i % 2 == 1) {
b += x[i] - '0'; //-'0'的意思是轉換成數字
}
}
total = b - a;
if (total < 0) {
total = abs(total);
printf("%d", total);
} else {
printf("%d", total);
}
return 0;
}