0 Compile Error

foo.cc: In function 'int main()':
foo.cc:13:20: error: expected ';' before '}' token
         cout << "P"
                    ^
                    ;
     }
     ~               

代码

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int s;
    cin >> s;
    if (s < 60)
    {
        cout << "F";
    }
    else
    {
        cout << "P"
    }
}

信息

递交者
题目
DJKS306  成绩判定
比赛
2024年3月等考一级题单
语言
C++ 98
递交时间
11 个月前
评测时间
11 个月前
分数
0
总耗时
0ms
峰值内存
0 Bytes