#include <stdio.h>

int main()
{
    int a = 5;
    int b = 10;
    int c = a + b;

    printf("Result = %d", c);

    return 0;
}