Cod sursa(job #3221148)

Utilizator popescu_georgePopescu George popescu_george Data 6 aprilie 2024 09:05:00
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;
}