관리 메뉴

Storage Gonie

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

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

(3) [C++, Python] 백준 No.2558 A+B - 2

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

문제

풀이

# C++

#include <iostream>

using namespace std;

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

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

# Python

a = int(input())
b = int(input())

print(a+b)
반응형
Comments