Cod sursa(job #1054050)
Utilizator | Data | 13 decembrie 2013 12:16:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{int A, B;
puts("Introduceti A:");
scanf("%d",&A);
puts("Introduceti B:");
scanf("%d",&B);
printf("A + B = %d\n",A+B);
getch();
return 0;
}