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