#include <iostream>
using namespace std;

class A{
    public:
    void show(){
        cout<<"In first show "<<endl;
    }  
    int show(){
        cout<<"In second show"<<endl;
    }
};

int main() {
    A obj;
    obj.show();

    return 0;
}