Cod sursa(job #2820173)
Utilizator | Data | 19 decembrie 2021 23:12:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream f("citire.in");
ofstream g("citire.out");
long long int a,b;
f>>a>>b;
g<<a+b;
}