Wednesday, March 12, 2014

UVa Solution 10055 : Hashmat the Brave Warrior


#include<cstdio>
#include<iostream>
using namespace std;

int main ()
{
    long long H, O;
    while(scanf("%lld%lld" , &H, &O)==2)
    {
        if(O>H)
        {
            printf("%lld\n", O-H);
        }
        else
        {
            printf("%lld\n", H-O);
        }
    }
    return 0;
}

No comments:

Post a Comment

Compare equality of two string in C

#include <stdio.h> #include<string.h> int main() {     char* country = "Bangladesh";     char* country2;     ...