#include <studio.h>
Int main( )
{
int x=0; int y=0; while (x<15) { y++,x+=++y; printf ("%i %i\n",x,y); } return 0; }