123k views
5 votes
Write a program to calculate the sum of numbers 15and 10 and print the steps involved​

1 Answer

3 votes

Answer:

//In c++

#include<iostream>

using namespace std;

int main(){

int sum;

sum=15+10;

cout<<sum;

}

output: 25

Step-by-step explanation:

User Lagerone
by
8.0k points