Cod sursa(job #2977453)
Utilizator | Data | 11 februarie 2023 17:02:55 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 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;
return 0;
}