Cod sursa(job #3157528)
| Utilizator | Data | 15 octombrie 2023 17:53:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | c-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, s = 0;
scanf("%d%d", &a, &b);
s = a + b;
printf("%d", s);
fflush(stdout);
}