1ll

#include <iostream>

int main() {
    // Declare variables
    int num1, num2, sum;

    // Input: Prompt the user to enter two integers
    std::cout << "Enter two integers: ";
    std::cin >> num1 >> num2;

    // Processing: Calculate the sum of the two integers
    sum = num1 + num2;

    // Output: Display the sum
    std::cout << "Sum: " << sum;

    // Return 0 to indicate successful completion
    return 0;
}