/* Addition program */
#include <stdio.h>

main()
{
   int integer1, integer2, sum;      /* declaration */

char ch='c';

/*scanf("%c",&ch);*/
printf("%c\n",ch);


/*float xx;
xx=15e+5;
printf("%lf this is xx\n",xx);
*/

   printf("Enter first integer\n");  /* prompt */
   scanf("%d", &integer1);           /* read an integer */
   printf("Enter second integer\n"); /* prompt */
   scanf("%d", &integer2);           /* read an integer */
   sum = integer1 + integer2;        /* assignment of sum */
   printf("Sum is %d\n", sum);       /* print sum */

/*char tt;*/

   return 0;  /* indicate that program ended successfully */
}

