Cod sursa(job #1939429)

Utilizator DannyCubedAndronache Daniele DannyCubed Data 25 martie 2017 18:51:25
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("ab.in");
ofstream g("ab.out");
int main()
{
    long long int a,b,s;
    f>>a;f>>b;s=a+b;cout<<s;
    return 0;
}