Can someone please translate the following code in Brainf**k? (I need it for testing an unrelated piece of software)

#include<stdio.h>
int main(){
    int i;
    while(scanf("%d",&i)!=EOF)
        printf("%d\n",i*i);
    return 0;
    }