Cod sursa(job #2905522)

Utilizator KristoMarkMark-Konrad Kristo KristoMark Data 22 mai 2022 11:52:18
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("suma.in");
ofstream g("suma.out");

int main() {
	unsigned int a, b;
	f >> a >> b;
	g << a + b;
	return 0;
}