/// @file main.cpp
/// @author Jens Gruschel
/// @date 2016-07-14
/// zwei Zahlen addieren
#include <iostream>
#include <string>
int main()
{
// Ergebnis berechnen
double result = 2.2 + 3.3;
// Ergebnis ausgeben
std::string text = "Ergebnis: ";
std::cout << text << result << std::endl;
return 0;
}