/*
Description: This program is to to calculate a + b.
Author: Liutong Xu
Date: 2016/10/24
*/
 
#include <stdio.h>
 
int main() 
{
    int a,b;

    scanf("%d%d",&a,&b);
    printf("The sum of %d and %d are %d\n",a,b,a+b);

    return 0;
}