Cod sursa(job #2396658)
Utilizator | Data | 3 aprilie 2019 18:26:04 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include <bits/stdc++.h>
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a+b);
}