Cod sursa(job #2639277)
Utilizator | Data | 1 august 2020 11:40:48 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <stdio.h>
int main () {
unsigned long a,b;
unsigned long s = 0;
scanf("%ld %ld", &a, &b);
s = a + b;
printf("%ld\n", s);
return 0;
}