Search

A+B

Created
2021/03/23 02:01
문제 번호
1000
카테고리
수학
구현

Memo

Code

제출 날짜

@2/15/2019

메모리

1984 KB

시간

0 ms
#include <iostream> int main() { int a, b; std::cin >> a >> b; std:: cout << a+b; return 0; }
C++
복사