Cod sursa(job #2777790)

Utilizator CondoracheAlexandruCondorache Alexandru CondoracheAlexandru Data 24 septembrie 2021 16:13:12
Problema A+B Scor 0
Compilator cpp-32 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;
}