Cod sursa(job #2977452)
Utilizator | Data | 11 februarie 2023 17:01:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
// APlusB.cpp : Defines the entry point for the application.
//
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
long long int a, b;
ifstream inFile ("adunare.in");
cin >> a >> b;
ofstream outFile ("adunare.out");
outFile << a + b << std::endl;
return 0;
}