#include <iostream>
usingnamespace std;
int main()
{
float a1, b1;
cout << "Enter the number you want to sum" << endl ;
//[Error] 'cout' was not declared in this scope
//[Error] 'endl' was not declared in this scope
cout << " a = " ;
cin >> a1 ;
//[Error] 'cin' was not declared in this scope
cout << " b = " ;
cin >> b1 ;
cout << " a + b ="<< a1 + b1 ;
getchar () ;
//[Error] 'getchar' was not declared in this scope
getchar () ;
return 0;
}