#include <iostream> #include <cmath> int main() { double x = 2.5, y = 1.3, z = 0.8; double result = std::fma(x, y, z); std::cout << "Result of fma(x, y, z) = " << result << std::endl; return 0; }