Help me in solving SYN9V2 problem

My issue

include <bits/stdc++.h>
using namespace std;

int main() {
cout << 8 * 9;
cout << endl;
cout << 100 + 200 * 2;

}
this is my above code and i’m getting the wrong answer while comiling

My code

#include <bits/stdc++.h>
using namespace std;

int main() {
    cout << 8 * 9;
    cout << endl;
    cout << 100 + 200 * 2;
    
    
    
}

Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone

@shettigarshrey
U have to do it like this

#include <bits/stdc++.h>
using namespace std;

int main() {

  cout << 8 * 9 << endl << 2 * (100 + 200);

  return 0;
}