#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a=1,b=5;
    printf("%d",a+b);
    return 0;
}