Recent Posts
Notice
No Rules Rules
꼬마 정민 (feat. 백준, 11382번) 본문
728x90
반응형
꼬마 정민
https://www.acmicpc.net/problem/11382
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
unsigned long long A, B, C;
cin >> A >> B >> C;
cout << A + B + C;
return 0;
}
// *&)*@*
- 문제의 요구사항대로 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
색종이 붙이기 (feat. 백준, 17136번) (0) | 2022.09.15 |
---|---|
캐슬 디펜스 (feat. 백준, 17135번) (0) | 2022.09.14 |
큐 (feat. 백준, 10845번) (0) | 2022.09.14 |
재귀의 귀재 (feat. 백준, 25501번) (0) | 2022.09.14 |
맥주 마시면서 걸어가기 (feat. 백준, 9205번) (0) | 2022.09.14 |
Comments