#ifndef BIGNUMBER_H
#define BIGNUMBER_H

#include <iostream>
#include <vector>

class BigNumber{
    private:
        std::vector<int> t;

    public:
        int operator=(const int k);
        BigNumber operator*(const int k);
        friend std::ostream& operator<<(std::ostream &o, const BigNumber &bn);
};

#endif
