///////////////////////////////////////////////////////
#include<iostream>
#include <iomanip>
using namespace std;

 


int main()
{
    float a,b;
    cin>>a;
    while(cin>>b && b!=999)
    {
        cout<<setiosflags(ios::fixed)<<setprecision(2)<<b-a<<endl;
        a=b;
    }
    cout<<"End of Output"<<endl;
    return 0;
}

posted on 2010-05-12 11:04  VRS  阅读(134)  评论(0编辑  收藏  举报