SOLUTION OF UVA 10055 UVA SOLUTIONS // Question of 10055 - Hashmat the Brave Warrior // Mahmud_Jamil #include<stdio.h> int main() { long long int a,b,c; while(scanf("%lld%lld",&a,&b)==2) { if(a>b) c=a-b; else c=b-a; printf("%lld\n",c); } return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook