Untitled
Anonymous
plain_text
03/02/2023 4:04 PM
304 B
18
Indexable
#include <fstream>
using namespace std;
long long int l, c, ans;
int main(){
ifstream fin("tabela.in");
ofstream fout("tabela.out");
fin>>l>>c;
ans=(l-1)^(c-1);
fout<<ans;
return 0;
}Editor is loading...