URI 1003 Problem Solution . #URI #Problem #Solution #1003 #C++ #C

/********* TRY YOURSELF FIRST **********/
Problem Details: Click to see full problem in details....

Solutions in C++:
 
#include<iostream>
using namespace std;

int main(){
    int A,B,SOMA;
    cin>>A;
    cin>>B;
    SOMA=A+B;
    cout<<"SOMA = "<<SOMA<<endl;

    return 0;


}
 

Comments