// editor2
#include<stdio.h>

int main()
{  int p,b,a;
    float r;
    scanf("%d",&p,&b,&a);
    if(p<=b && a=1)
    { 
        r=b-p;
        printf("%.2f",r);
    }else{
        printf("Insufficient Balance");
    } return 0;
    
    
}