#include<iostream> using namespace std; int main() { int a = 1; int b = 1; int c = 3; cout << (a + b) / c; return 0; }