2013秋13级预备队集训练习1 A - Hashmat the Brave Warrior

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

你可能感兴趣的:(2013秋13级预备队集训练习1 A - Hashmat the Brave Warrior)