Cod sursa(job #1054051)
Utilizator | Data | 13 decembrie 2013 12:18:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
#include <stdlib.h>
int main()
{int A, B;
puts("Introduceti A:");
scanf("%d",&A);
puts("Introduceti B:");
scanf("%d",&B);
printf("A + B = %d\n",A+B);
return 0;
}