#include <iostream>
using namespace std;
class vehicle{
public:
void fuel(){
cout<<" this is fuel amount\n";
}
void capacity(){
cout<<"this is capacity\n";
}
void breaks(){
cout<<"the breaks works fine\n";
}
};
class bus: public vehicle{
void g(){
cout<<"this is bus\n";
}
};
int main ()
{
bus wagernar;
wagernar.breaks();
cout<<endl;
wagernar.capacity();
cout<<endl;
wagernar.fuel();
cout<<endl;
}