Skip to main content

Dear God

Dear God,
I've learnt that you are the almighty
and the prime wish granter

If I want something from you
Will you please grant it?

I'm so so so fucking tired
Tired of living the life I never wanted
It's just so hard to pretend
And put on a fake smile

I feel like a burden to this world
Maybe I don't belong here at all
Or maybe I'm just a mistake
A worthless living piece of meat

Take my soul to the place where it belongs
In a quiet banquet 
Where darkness will be my only company

Dear God,
Please grant my wish
And set me free.
 

Comments

Popular posts from this blog

Currency Converter - USD & BDT [C Programming]

#include <stdio.h> void main() {     int i;     float usd, bdt;     printf("Press 1 to convert USD to BDT\nPress 2 to convert BDT to USD\n");     printf("Enter your choice: ");     scanf("%d", &i);     switch(i)     {         case 1:             printf("Enter amount in USD: ");             scanf("%f", &usd);             bdt = usd * 80;             printf("1 USD = 80 BDT\n");             printf("%0.3f USD = %0.3f BDT", usd, bdt);             break;         case 2:   ...

Greatest Value Among Three Numbers [C Programming]

#include <stdio.h> void main() {     int a, b, c;     printf("Enter a number in a:");     scanf("%d", &a);     printf("Enter a number in b:");     scanf("%d", &b);     printf("Enter a number in c:");     scanf("%d", &c);     if(a >= b && a >= c) // a > b, a > c     {         printf("%d is largest", a);     }     else if(b >= a && b >= c) // b > a, b > c     {         printf("%d is largest", b);     }     else if(c >= a && c >= b) // c > a, c > b     {         printf("%d is largest", c);     } }