#ifndef STATIC_H
#define STATIC_H
//start
class Thing {
public:
    Thing(int a, int b);
    ~Thing();
    void display() const ;
    static void showCount();
private:
    int m_First, m_Second;
    static int sm_Count;
};
//end


#endif        //  #ifndef STATIC_H

