Cod sursa(job #2220535)

Utilizator beatricecomanBeatrice Coman beatricecoman Data 12 iulie 2018 00:59:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <iostream>
using namespace std;
int A,B,s=0;
int main()
{
    cin>>A>>B;
    s=A+B;
    cout << s << endl;
    return 0;
}