#include <iostream>
using namespace std;
int main()
{
int a;
int b;
int sum;
cout << "enter the number boss \n";
cin >> a;
cout << "enter the number boss \n";
cin >> b;
sum = a + b;
cout << "the sum of those number is" << sum << endl;
return 0;
}
my error siya paano ma fix
using namespace std;
int main()
{
int a;
int b;
int sum;
cout << "enter the number boss \n";
cin >> a;
cout << "enter the number boss \n";
cin >> b;
sum = a + b;
cout << "the sum of those number is" << sum << endl;
return 0;
}
my error siya paano ma fix