Cod sursa(job #2973862)

Utilizator PetyAlexandru Peticaru Pety Data 2 februarie 2023 18:45:18
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <bits/stdc++.h>

using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");

int a, b;
int main () 
{
  ios_base::sync_with_stdio(false);
  cin.tie(0); cout.tie(0);
  fin >> a >> b;
  fout <<a  + b;
  return 0;
}