#include <stdio.h>
int main (){
    int a;
    int b;
    scanf("%d",a);
    scanf("%d",b);
    printf("The value of A: 2");
    printf("The value of B: 3");
    return 0;
}