알고리즘

[알고리즘] 백준 27331 - 2 桁の整数 (Two-digit Integer) (C++)

blueberrysoda 2025. 2. 11. 23:56

[문제 링크] : https://www.acmicpc.net/problem/27331

#include <iostream>
using namespace std;

int main(){
    int A, B;
    cin >> A >> B;
    cout <<  (10 * A) + B << "\n";
    return 0;
}