#include #include int main() { double x = 3, y = 4; std::cout << "Richtung zum Punkt (" << x << ", " << y << ") = " << std::atan2(y,x) << '\n'; }