#include<stdio.h>
int main(){
    int a=5;
    int b=7;
    a++;
    b--;
    printf("%d",a,b);
    return  0;
}