Cod sursa(job #205049)
| Utilizator | Data | 28 august 2008 21:00:21 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
//test
#include <stdio.h>
long a,b;
int main()
{
freopen("adunare.in","rt",stdin);
freopen("adunare.out","wt",stdout);
scanf("%ld %ld", &a, &b);
a^=b^=a^=b;
printf("%ld", a+b);
return 0;
}