#include<stdio.h>
int main()
{
int j=7,i=4;
j=j||++i&&printf("you can");
printf("%d %d",i,j);

return 0;
}