Cod sursa(job #3227540)

Utilizator popescu_georgePopescu George popescu_george Data 1 mai 2024 19:28:01
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
ifstream F("adunare.in");
ofstream G("adunare.out");
int a,b;
int main()
{
    return F>>a>>b,G<<a+b,0;
}