Cod sursa(job #2466960)

Utilizator Johnny07Savu Ioan-Daniel Johnny07 Data 3 octombrie 2019 13:13:04
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int c,a,b;
f>>a>>b;
c=a;
while(c/10!=0)
    c/=10;


int v[c];
g<<a+b;


    return 0;
}