#include <iostream>
using namespace std;

class Deep{
    private:
    int a = 10;
    
    public:
    int b = 20;
};

void show(Deep obj){
    cout<<obj.b<<endl;
}
int main() {
    show();
    return 0;
}