Showing posts with label sum. Show all posts
Showing posts with label sum. Show all posts

Sum of Two Numbers in C++

This program takes two integers as input from the user and outputs their sum.

#include <iostream>

int main() {

    int a, b;

    std::cout << "Enter two numbers: ";

    std::cin >> a >> b;

    int sum = a + b;

    std::cout << "Sum: " << sum << std::endl;

    return 0;

}


Sum of Two Numbers in C

This program takes two integers as input from the user and outputs their sum.

#include <stdio.h>

 int main() {
    int a, b;
    printf("Enter two numbers: ");
    scanf("%d %d", &a, &b);
    int sum = a + b;
    printf("Sum: %d\n", sum);
    return 0;
}

Sum of Two Numbers in Python

This program takes two integers as input from the user and outputs their sum.

 
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
sum = a + b
print("Sum:", sum)

MS Excel Logical Functions

Logical functions in Excel are powerful tools that help you make decisions based on conditions. Whether you're comparing values or testi...

Post Count

Loading...