#include <iostream>
using namespace std;

#define mittelwert(zahl_a, zahl_b) (((zahl_a)+(zahl_b))/2.0)

int main(void)
{
   cout << mittelwert(2,5) << endl;
   cout << mittelwert(2.0, 5.0) << endl;
   return 0;
}
