Cod sursa(job #1228827)
| Utilizator | Data | 15 septembrie 2014 17:03:17 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.18 kb |
#include<stdio.h>
int a,b;
int main ()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%lld\n",(long long)a + b);
return 0;
}
