Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

beecrowd problem 1001 solution

#include <iostream>
 
using namespace std;
 
int main() {
 
    int A, B;
    cin >> A;
    cin >> B;
    int X = A + B;
    cout << "X" << " " << "=" << " "<< X << endl;
 
    return 0;
}
Source by www.beecrowd.com.br #
 
PREVIOUS NEXT
Tagged: #beecrowd #problem #solution
ADD COMMENT
Topic
Name
3+9 =