관리 메뉴

Storage Gonie

(2) [C++, Python] 백준 No.1000 A+B 본문

알고리즘/백준풀이1. 입출력

(2) [C++, Python] 백준 No.1000 A+B

Storage Gonie 2019. 4. 18. 14:18
반응형

문제


풀이

# C++

#include <iostream>

using namespace std;

int main(void)
{
    int a = 0;
    int b = 0;

    cin >> a >> b;
    cout << a+b << endl;
}

 

# Python

a, b  = map(int, input().split())

print(a+b)
반응형
Comments