blob: 64a6a73b95fd47e662b2bd9bb9c70f695c44f452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# from cs50 import get_int
# x =get_int("What's x? ")
# y =get_int("What's y? ")
# if x < y:
# print("x is less than y")
# elif x > y:
# print("x is grretaer than y")
# else:
# print("x is equal to y")
s = input("s: ")
t = input("t: ")
if s == t:
print("SAME")
else:
print("DIFFERENT")
|