#include<iostream> using namespace std; int main() { int a,b; a=10; b=3; cout<<a/b<<" "<<a%b; return 0; }