#include <stdio.h>#include <stdlib.h>int main(void){ int a,b,num; scanf("%d%d",&a,&b); num=a+b; printf("%d+%d=%d",a,b,num); system("pause"); return 0;}