#include <stdio.h> #include <stdlib.h> int main(void) { int a, b, c; scanf("%d %d", &a, &b); c = a>b? 100-a+b:b-a; printf("%d\n", c); return 0; }
謝謝