#include using std::cout;using std::endl;int main() { int a = 10; int b = 6; int c = 3; int d = 4; int f = (a + b)/(c + d); cout << f ; return 0;} 2