fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a, b, n;
  5. scanf("%d%d", &a, &b);
  6. n = (b - a + 100) % 100;
  7. printf("%d", n);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5288KB
stdin
10 5
stdout
95