iExpress repeater

From Esolang
Jump to navigation Jump to search

The iExpress repeater is a program made by ↑ which you input a value and the code prints "IEXPRESS!" that many times .

Examples

In Python

inp = input()
for i in range(inp):
    print("IEXPRESS!")

or:

print(int(input())*"IEXPRESS!\n")

In Free2Edit

tnr1+5+5l1gnws-1<<IEXPRESS!>>r1ocl1we

In C

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