#include <iostream>
using namespace std;

int main() 
{
   	int k(1), l(2);
   	if (k and l) cout << "both non zero\n";
   	
    return 0;
}