Cod sursa(job #2344419)

Utilizator UnderMitPetrut Mitrache UnderMit Data 15 februarie 2019 08:43:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<bits/stdc++.h>
using namespace std ;


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

int A , B , S ;

int main()
{
     fin >> A >> B ;
     S = A + B ;

    fout << S ;
}