#if !defined(DIFFERENCE_OF_SQUARES_H)
#define DIFFERENCE_OF_SQUARES_H
namespace difference_of_squares {
int square_of_sum(int n);
int sum_of_squares(int n);
int difference(int n);
} // namespace difference_of_squares
#endif // DIFFERENCE_OF_SQUARES_H