Cod sursa(job #2926748)

Utilizator BeilandArnoldArnold Beiland BeilandArnold Data 18 octombrie 2022 16:59:28
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda arnold-testare Marime 0.26 kb
#include <iostream>
	
#include <fstream>
	
using namespace std;
	
 
	
int main()
	
{
	
    ifstream bemenet("adunare.in");
	
    ofstream kimenet("adunare.out");
	
 
	
    int x, y;
	
    bemenet >> x >> y;
	
    kimenet << x + y << endl;
	
 
	
    return 0;
	
}