백준 알고리즘(C/C++) - 1000번 A+B

 

#include <stdio.h>

int main(void) {
	int a, b;
	scanf("%d %d", &a, &b);
	printf("%d\n", a + b);
	return 0;
}
#include <iostream>

int main() {
	int a, b;
	std::cin >> a >> b;
	std::cout << a + b << std::endl;
	return 0;
}

댓글

Designed by JB FACTORY