Cod sursa(job #2058416)

Utilizator FunnyStockyMihnea Andreescu FunnyStocky Data 5 noiembrie 2017 17:02:07
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <cstdio>
using namespace std;
int main()
{
    freopen("q.in","r",stdin);
    freopen("q.out","w",stdout);
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",a+b);
    return 0;
}