[백준 2558] A+B - 2 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
기본적인 사칙 연산 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
namespace Solution {
class Program {
static void Main(string[] args) {
var a = int.Parse(Console.ReadLine()!);
var b = int.Parse(Console.ReadLine()!);
Console.WriteLine($"{a + b}");
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a, b; cin >> a >> b;
cout << a + b << "\n";
return 0;
}