Cod sursa(job #1145485)

Utilizator AndreiGrecuGrecu Andrei AndreiGrecu Data 18 martie 2014 11:08:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int long long a,b;
    f>>a;
    f>>b;
    g<<a+b<<endl;
    return 0;
}