#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
float g,c;
cout<<endl<<endl;
cout<<"*****************************************************************************";
cout<<endl<<endl;
cout<<"ENTER NUMBER OF GALLONS-";
cin>>g;
c=g/7.481;
cout<<"EQUIVALENT IN CUBIC FEET-"<<c;
cout<<"\n*****************************************************************************";
getch();
return 0;
}