URI Online Judge Solution 2753 Output 7 Using Python Programming Language.
Your teacher would like you to do a program with the following characteristics:
- Create twenty-six integers;
- Assign the first variable the value 97;
- Assign the other variables to the value of the first sum of a unit;
- Show on the screen the numeric values of the first variable, a space in arm, the character 'e', another white space and its alphanumeric value (characters);
- Repeat for all other variables.
Input
There is not.
Output
The result of your program should be the same as the output example.
Input Sample | Output Sample |
97 e a 98 e b 99 e c 100 e d 101 e e 102 e f 103 e g 104 e h 105 e i 106 e j 107 e k 108 e l 109 e m 110 e n 111 e o 112 e p 113 e q 114 e r 115 e s 116 e t 117 e u 118 e v 119 e w 120 e x 121 e y 122 e z |
URI 2753 Solution in Python:
print("97 e a")
print("98 e b")
print("99 e c")
print("100 e d")
print("101 e e")
print("102 e f")
print("103 e g")
print("104 e h")
print("105 e i")
print("106 e j")
print("107 e k")
print("108 e l")
print("109 e m")
print("110 e n")
print("111 e o")
print("112 e p")
print("113 e q")
print("114 e r")
print("115 e s")
print("116 e t")
print("117 e u")
print("118 e v")
print("119 e w")
print("120 e x")
print("121 e y")
print("122 e z")
Comments
Post a Comment