Cod sursa(job #1748987)

Utilizator andreea_paiuPaiu Andreea andreea_paiu Data 27 august 2016 17:07:05
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<iostream>
#include<stdio.h>
using namespace std;
int main(){
    freopen("a+b.in","r",stdin);
    freopen("a+b.out","w",stdout);
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}