/* meka mage first program eka hodada */
#include<stdio.h>
#include<conio.h>
main()
{
int a, b,tot,c;
clrscr();
printf("\nThis software is developed by \n Ranuka Udayanga \n
[email protected] \n
www.*********.com\n ");
printf("\n\n1st grade addition software\n");
printf("\n Enter First No\n");
scanf("%d", &a);
printf("\nEnter second no\n");
scanf("%d",&b);
tot = a + b;
printf("\nwhat is the answer\n");
scanf("%d", &c);
if( c == tot)
printf("\nYour are correct!!\n");
else
printf("\n you are incorrect \n\n Please go to grade 1 and learn
mathematics\n\n");
printf("Correct answer is %d", tot);
getch();
return(0);
}