Cod sursa(job #2367784)

Utilizator iustin948Homoranu Iustin iustin948 Data 5 martie 2019 12:14:52
Problema A+B Scor 30
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.32 kb
#include <iostream>
#include <fstream>
using namespace std;

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

int main()
{
    short a ,b;
    fin >> a >> b;
    for(int i=1; i <= max(a,b); i++)
    for(int j=1; j <= max(a,b); j++)
    cout << "90 puncte";

    fout << a + b << "\n";
    return 0;
}