Cod sursa(job #2541678)
Utilizator | Data | 8 februarie 2020 18:32:14 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a+b);
return 0;
}