Cod sursa(job #2271911)

Utilizator RicGabrielRicardo Gabriel do Nascimento RicGabriel Data 29 octombrie 2018 14:54:12
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<bits/stdc++.h>

using namespace std;

int main(){
	
	int X, Y;
	cin >> X >> Y;
	cout << (X+Y) << endl;
	}
	
	return 0;
}