Cod sursa(job #2452345)

Utilizator cristi1990anCornea Cristian cristi1990an Data 30 august 2019 15:24:13
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>

int main()
{
	int x, y;

	scanf("%d", &x);
	scanf("%d", &y);


	printf("%d\n", x + y);
	fflush(stdout);

}