UVA OJ: 10055 - Hashmat the Brave Warrior

来源:互联网 发布:sqlite 数据库锁定 编辑:程序博客网 时间:2024/05/21 10:32
#include<stdio.h>
#include<stdlib.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;
}
0 0