[ create a new paste ] login | about

Link: http://codepad.org/DxIF8CVQ    [ raw code | output | fork ]

C++, pasted on Aug 12:
#include <iostream>
using namespace std;

void Q(int val) {
  printf("%c", val + 'a' - 1);
}

int main(void) {
  int Valve = 3;
  for (int i = 0; i < 5991; i++)
    Valve++;
  Q(Valve / 333);
  Valve += 12345;
  Q(Valve % 18334);
  Valve /= 3;
  Q(Valve - 6094);
  for (int m = 0; m < 19; m++)
    Valve += m;
  int OSW = 4 * 2 + 1;
  Q(OSW);
  OSW *= 2;
  Q(OSW + 1);
  Q(OSW + 2);
  int l = 45;
  Q(l / 3);
  Valve = 0;
  int notthree = (l + 9) / 3;
  Q(notthree);
}


Output:
1
resistor


Create a new paste based on this one


Comments: