Cod sursa(job #2418838)

Utilizator hellhereHell here hellhere Data 6 mai 2019 16:30:50
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<bits/stdc++.h>
using namespace std;

int a,b;

int main(){
ifstream cin("adunare.in");
ofstream cout("adunare.out");


cin>>a>>b;
cout<<a+b;

return 0;
}