Bottle Deposits Solution:

#include <stdio.h>

int main()

{

  float a,b,c;

  scanf("%f",&a);

  scanf("%f",&b);

  c=(a*0.10)+(b*0.25);

    printf("Refund for Bottles=%.2f",c);

return 0;
}