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