Python課題―「足すか掛けるか」

Cランクではあるがそこまで難しくない。ところで結果をトータル用の変数に一発で入れられないのだろうか?仕方なくテンポラリーの変数を使ったのだがなんだかモニョるところである。

# coding: utf-8
n = int(input()) 
temp = 0
t = 0
s = [''] * n #入力分のリストを作る
for i in range(n):
    s[i] = input().split() #リストに入力してもらう
for j in range(n):
    if s[j][0] == s[j][1]:
        temp = int(s[j][0]) * int(s[j][1]) 
        t+= temp
    else:
        temp = int(s[j][0]) + int(s[j][1]) 
        t+= temp
print(t)