view bin/CaT @ 3243:b16673df707a

<elliott> addquote <Bike> Fiora: how long does it take to factor 8616460799 <Fiora> Bike: I think using gnfs to factor that would be like using a nuclear weapon to sterilize a needle
author HackBot
date Thu, 27 Jun 2013 00:07:27 +0000
parents cedbde4c8d40
children 5909a6756b89
line wrap: on
line source

#!/usr/bin/env python
print (lambda s: "".join([(s[i].upper() if i%2==0 else s[i].lower()) for i in range(len(s)) ]))(open("/dev/stdin").read())