C++ | Addition

#include<iostream>

using namespace std;

int main(){

    int amount1;
    cin>>amount1;
    
    int amount2;
    cin>>amount2;
    
    int sum = amount1+amount2;
    
    cout<<sum<<endl;

    return 0;
}

Comments

Popular posts from this blog

TEACHER'S DAY

All Important Exams After Class 10+2

find the roots of the equation ax^2 + bx + c using C language