View Code of Problem 1

#include<iostream>
using namespace std;
int main()
{
int a,b,c;
 cin>>a>>b;
 c=a+b;
 cout<<c;
 return 0;
}
/*
Main.cc:9:10: error: stray '\357' in program
  return 0;
          ^
Main.cc:9:11: error: stray '\274' in program
  return 0;
           ^
Main.cc:9:12: error: stray '\233' in program
  return 0;
            ^
Main.cc: In function 'int main()':
Main.cc:9:10: error: expected ';' before '}' token
  return 0;
          ^
          ;
 }
 ~         
*/

Double click to view unformatted code.


Back to problem 1