#include <iostream>
using namespace std;

class Arun{

    void show(){
        cout<<"In show"<<endl;
    }
    
};

int main() {
    
    Arun obj1;
    
    obj1.show();
  
    return 0;
}