#ifndef CALCULATOR_H
#define CALCULATOR_H
class Calculator
{
public:
int Add (int, int);
int Sub (int, int);
};
#endif//CALCULATOR_H