Cod sursa(job #208913)
Utilizator | Data | 19 septembrie 2008 18:28:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
/*
%d pentru int
%ld pentru long
%lld pt long long
%c pt char
%f pt float
%s pt string
gets(s); pt string
*/
# include <stdio.h>
int main()
{
int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d",a+b);
}