int foo(int a, int b) {
	return a + b; // Set breakpoint here
}

int main() {
	return foo(1,3);
}
