#include <iostream>
#include<string>
using namespace std;
class Methodoverloading{
    public:
    void overloading(){
        cout<<"over - loading-1"<<endl;
    }
    void overloading( double a, float f){
        cout<<"over-loading-2"<<endl;
        cout<<a<<" "<<f<<endl;
    }
    void overloading(int c,char d ){
        cout<<"over-loading-3"<<endl;
        cout<<c<<"  "<<d<<endl;
    }
};
int main() {
Methodoverloading obj;
obj.overloading();
obj.overloading(39.8999,8.7);
obj.overloading(67,'fish');
return 0;
}