
#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int a, b, c;
	cout << "enter 2 numbers\n";
	cin >> a >> b;
	c=a+b;
	cout << "subtracted val is " << c;
	return 0;
}