View Code of Problem 1

#include<iostrem>
using namespace std;
int main(){
int a,b;
  cin>>a>>b;
  cout<<a+b<<endl;
    return 0;
}
/*
Main.cc:1:18: fatal error: iostrem: No such file or directory
 #include<iostrem>
                  ^
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 1