#28111: c壓行


jeremydingeric@gmail.com (164253)


100+b-a確保其不為負

否則取餘數會是負的

(用python就能得到正的餘數

(但是我就是想加速不用py

#include <stdio.h>

void main(){

 short int a,b;

 scanf("%hd %hd",&a,&b);

 printf("%hd",(100+b-a)%100);

}