#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
long int a,b,sum,cube;
printf("Enter two numbers ::");
scanf("%ld%ld",&a,&b;
sum=a+b;
cube=sum*sum*sum;
printf("Cube of the sum of these numbers is %d",cube);
getch();
}