fork download
#include <iostream>
using namespace std;

int main() {
	printf("%d %d", 6 / -10, 6 % -10);
	return 0;
}
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
0 6