Cod sursa(job #2669951)

Utilizator hellohelloopc37134 hellohello Data 8 noiembrie 2020 15:24:14
Problema Elementul majoritar Scor 0
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.23 kb
///element majoritar infoarena
#include <fstream>
#include <iostream>
using namespace std;

ifstream in("test.out");
ofstream out("elmaj.out");

int main()
{
    int x,y;
    in>>x>>y;
    out<<x<<" "<<y;
    return 0;
}