#include<stdio.h>
#include<conio.h>
main()
{
	int a, b, sum;
	printf(" Type the first number: ");
	scanf("%d",&a);
	printf("Type the second number:");
	scanf("%d",&b);
	sum = a+b;
	printf("Summation = %d",sum);
	getch();
}