编辑代码

#include<stdio.h>
int main()
{
	int a,b,c,sum;
	scanf("%d%d%d",&a,&b,&c);
	sum=(a+b)*c;
	printf("%d",sum); 
	return 0;
}