uva-10055 - Hashmat the Brave Warrior

没啥好说的,很简单的一道题目。。。。

 但是WA了一次

#include <stdio.h>
int main()
{
 long long a,b;
    while(scanf("%lld%lld", &a, &b) != EOF)
         printf("%lld\n", a > b ? a - b : b - a);
    return 0;
}

你可能感兴趣的:(uva-10055 - Hashmat the Brave Warrior)