#include<stdio.h>
int main()
{
 int a=10,b=15,c=20,sum=(a+b)*c;
 printf("%d %d %d &\n %d",a,b,c,sum );

	
}