Cod sursa(job #2922176)
Utilizator | Data | 5 septembrie 2022 16:27:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b;
scanf("%d", &a);
scanf("%d", &b);
printf("%d", a+b);
return 0;
}