Cod sursa(job #2548761)

Utilizator nightknightCristea Calin nightknight Data 16 februarie 2020 23:52:48
Problema A+B Scor 0
Compilator c-64 Status done
Runda teme_upb Marime 0.18 kb
#include <fstream>

using namespace std;

int main()
{  ifstream fin("ab.in");
   ofstream fout("ab.out");
   int a,b,s;
   fin>>a>>b;
   s=a+b;
   fout<<s;

    return 0;
}