#include <iostream>
using namespace std;

int main() {
	int a, b = 3, c = 5;
	cin >> a >> b >> c;
	cout  << a + b - c;
	return 0;
}