This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cmc/contests/1contest/1.cpp
T
2025-04-13 21:48:15 +03:00

15 lines
176 B
C++

class Sum
{
private:
int a, b;
public:
int
get() const {
return a + b;
}
Sum(int a, int b) : a(a), b(b) {};
Sum(Sum sum, int b) : a(sum.get()), b(b) {};
};