Cod sursa(job #1513665)
Utilizator | Data | 29 octombrie 2015 20:25:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main ()
{
ifstream fin("adunare.in");
ofstream out("adunare.out");
unsigned long long int x,y; fin>>x>>y; out<<x+y;
}