2010年7月30日 星期五

高中 a012: Hashmat的戰役



想看題目請點我

#include <iostream>
using namespace std;
  
int main() {  
    long long double x , y ;
    while(cin >> x >> y)
    {
        if(y > x)
        {
            long long double temp ;
            temp = x ;
            x = y ;
            y = temp ;
            cout << x-y << endl ;
        }
        else
        {
            cout << x-y << endl ;
        }
    }
    return 0;  
}