Skip to content

p003.c

Metadata

Property Detail
Author Amit Dutta (amitdutta4255@gmail.com)
License MIT

Actions

Raw View on GitHub

💡 You can print or save this file by opening Raw and using your browser.

Source Code

#include<stdio.h>
int main() {
    int a, b, sum, multi;
    printf("Enter the 1st number : ");
    scanf("%d",&a);
    printf("Enter the 2nd number : ");
    scanf("%d",&b);
    sum = a + b;
    multi = a * b;
    printf("\nSum = %d"
           "\nMultiplication = %d",sum,multi);
    return 0;
}