#include<iostream> using namespace std; int main() { int a=10,b=20,c=8,d; d=(a+b)*c/2; cout<<d; return 0; }