0
plz solve the problem
using namespeace std; #include <iostream> int main() { int a,b; cout << "Enter The First Number:"; cin >> a; cout << "\nEnter Second Number"; cin >> b; int sum = a+b; cout << "\nsum of two number is "<< a+b; return 0; }
2 odpowiedzi
+ 2
// There are 2 mistakes in your code
using namespace std;
cout << "\nsum of two number is "<< sum;