Cod sursa(job #2557536)

Utilizator andreindwAndrei andreindw Data 25 februarie 2020 21:00:22
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <stdio.h>
#include <stdlib.h>

int main()
{
   int a,b,c;
   scanf("%d\n%d\n",&a,&b);
   c=a+b;
   printf("%d",c);
   fflush(stdout);



       return 0;
}