乘法宏给出错误的答案

#include <iostream>
using namespace std;

#define MULTIPLY(a, b) a*b

int main(){
    cout << MULTIPLY(2+3, 3+6);
    return 0;
}

I expected this to print 40 since five times eight is forty. Why does it print 17?