Addition.c
#include <stdio.h< int main() { int n1, n2, mul; printf("Enter two integers: "); scanf("%d %d", &n1, &n2); mul = n1 * n2; printf("Multiplication of two numbers is:= %d\n",mul); return 0; }