Cod sursa(job #2777792)

Utilizator CondoracheAlexandruCondorache Alexandru CondoracheAlexandru Data 24 septembrie 2021 16:13:14
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.13 kb
#include <bits/stdc++.h>
using namespace std;

int main(){
	int a,b; 
	cin >> a;
	cin >> b;
	cout << a+b;
return 0;
}