#include <stdio.h>


int main(){

    int i = 3;
    int j, k;

    printf("I can put %d anywhere %d\n", i, j);

    if ( 7 )
	printf("There will be a picnic.\n");
    else
	printf("There will not be a picnic");

    return 0;
}
