Cod sursa(job #3240881)

Utilizator popescu_georgePopescu George popescu_george Data 22 august 2024 13:05:27
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main()
{
    int a,b;
    return cin>>a>>b,cout<<a+b,0;
}