My issue
My code showing wrong .However the solution code and my code are the same
My code
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a = 50;
int b = 40;
int sum = a + b;
int product = a * b;
int quotient = a / b;
cout << sum << endl;
cout << product << endl;
cout << quotient ;
return 0;
}
Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone