Cod sursa(job #3294856)

Utilizator PetyAlexandru Peticaru Pety Data 29 aprilie 2025 18:26:35
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 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;
}