#include<stdio.h>
int main(void)
{
long long a,b;
while(scanf("%lld%lld",&a,&b)!=EOF)
printf("%lld\n",a>b?a-b:b-a);
return 0;}
10055 - Hashmat the Brave Warrior
最新推荐文章于 2016-08-19 14:07:58 发布
#include<stdio.h>
int main(void)
{
long long a,b;
while(scanf("%lld%lld",&a,&b)!=EOF)
printf("%lld\n",a>b?a-b:b-a);
return 0;}