Skip to content

Instantly share code, notes, and snippets.

@skakri
Created September 14, 2015 17:42
Show Gist options
  • Save skakri/6c6e3644397ce8bd83e7 to your computer and use it in GitHub Desktop.
Save skakri/6c6e3644397ce8bd83e7 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char* argv[]){
printf("%c",~~-~~~-~~~~-~~~~~-~~'2'+'2');
printf("%c",-~~~-~~~~~~~-~~~~~~~'3'+'3');
printf("%c",~-~~~~~-~~~~~-~~~-~-'4'+'4');
printf("%c",~~~-~~-~~~-~~-~~-~~~'5'+'5');
printf("%c",~-~-~-~-~-~-~-~-~-~-'6'+'6');
printf("%c",~~-~-~-~~~-~-~~~-~-~'7'+'7');
printf("%c",~~-~-~~~-~~~~~~~-~~~'8'+'8');
printf("%c",~~~-~~-~~~-~~~~~-~~~'9'+'9');
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment