#include <iostream>
using namespace std;
Klasse Mathematik {
int x, y;
public:
Void input() {
cout << "Input two inetegersn";
cin >> x >> y;
}
void add() {
cout << "Ergebnis = " << x + y;
}
};
int main()
{
Mathematik m; // Objekt der Klasse
erstellen m.input();
m.add();
0 zurückgeben;
}