View Code of Problem 1

#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
	int a, b;
	cin >> a >> b;
	cout << a + b << endl;
    return 0;
}


/*
Main.cc:1:10: fatal error: stdafx.h: No such file or directory
 #include "stdafx.h"
          ^~~~~~~~~~
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 1